Skip to content

Commit

Permalink
eslint-config-seekingalpha-base ver. 8.2.0
Browse files Browse the repository at this point in the history
- [breaking] enable `logical-assignment-operators` rule
  • Loading branch information
alexkoval committed May 12, 2024
1 parent b8532c5 commit db59e2f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 8.2.0 - 2024-05-12

- [breaking] enable `logical-assignment-operators` rule

## 8.1.0 - 2024-05-12

- [deps] update `eslint-plugin-unicorn` to version `53.0.0`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-base",
"version": "8.1.0",
"version": "8.2.0",
"description": "SeekingAlpha's sharable base ESLint config",
"main": "index.js",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ module.exports = {
// https://eslint.org/docs/rules/init-declarations
'init-declarations': ['off', 'always'],

// https://eslint.org/docs/latest/rules/logical-assignment-operators
'logical-assignment-operators': ['error', 'always'],

// https://eslint.org/docs/rules/max-classes-per-file
'max-classes-per-file': ['error', config.maxClassesPerFile],

Expand Down

0 comments on commit db59e2f

Please sign in to comment.