Skip to content

Commit

Permalink
v19.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
eglove committed Oct 11, 2024
1 parent 792d025 commit 415d8b9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
> [!CAUTION]
> Do not use this with Prettier! Styling rules are included.
- 895 errored rules.
- 885 errored rules.
- 294 rules from [eslint-plugin-sonarjs](https://github.com/SonarSource/SonarJS/blob/master/packages/jsts/src/rules/README.md)
- 144 rules from [@eslint/js](https://github.com/eslint/eslint/tree/main/packages/js)
- 116 rules from [sindresorhus/eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
- 103 rules from [@typescript/eslint](https://github.com/typescript-eslint/typescript-eslint)
- 68 rules from [@stylistic/eslint-plugin](https://eslint.style/)
- 42 rules from [eslint-plugin-lodash](https://github.com/wix-incubator/eslint-plugin-lodash)
- 34 rules from [jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y)
- 32 rules from [eslint-plugin-lodash](https://github.com/wix-incubator/eslint-plugin-lodash)
- 25 rules from [@stylistic/eslint-plugin-ts](https://eslint.style/)
- 20 rules from [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n)
- 20 rules from [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist)
Expand Down
20 changes: 10 additions & 10 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -590,29 +590,29 @@ export default tseslint.config(
"unicorn/text-encoding-identifier-case": "error",
"unicorn/throw-new-error": "error",
"lodash/callback-binding": "error",
"lodash/chain-style": ["error", "as-needed"],
"lodash/chain-style": [2, "as-needed"],
"lodash/chaining": "error",
"lodash/collection-method-value": "error",
"lodash/collection-ordering": "error",
"lodash/collection-return": "error",
"lodash/consistent-compose": ["error", "flow"],
"lodash/identity-shorthand": ["error", "always"],
"lodash/import-scope": ["error", "method"],
"lodash/matches-prop-shorthand": ["error", "always"],
"lodash/matches-shorthand": ["error", "always", 3],
"lodash/consistent-compose": [2, "flow"],
"lodash/identity-shorthand": [2, "always"],
"lodash/import-scope": [2, "method"],
"lodash/matches-prop-shorthand": [2, "always"],
"lodash/matches-shorthand": [2, "always", 3],
"lodash/no-commit": "error",
"lodash/no-double-unwrap": "error",
"lodash/no-extra-args": "error",
"lodash/no-unbound-this": "error",
"lodash/path-style": ["error", "array"],
"lodash/path-style": [2, "array"],
"lodash/prefer-compact": "error",
"lodash/prefer-constant": "error",
"lodash/prefer-filter": "error",
"lodash/prefer-find": "error",
"lodash/prefer-flat-map": "error",
"lodash/prefer-get": "error",
"lodash/prefer-immutable-method": "error",
"lodash/prefer-includes": ["error", { includeNative: true }],
"lodash/prefer-includes": [2, { includeNative: true }],
"lodash/prefer-invoke-map": "error",
"lodash/prefer-is-nil": "error",
"lodash/prefer-lodash-chain": "error",
Expand All @@ -623,13 +623,13 @@ export default tseslint.config(
"lodash/prefer-noop": "error",
"lodash/prefer-over-quantifier": "error",
"lodash/prefer-reject": "error",
"lodash/prefer-some": ["error", { includeNative: true }],
"lodash/prefer-some": [2, { includeNative: true }],
"lodash/prefer-startswith": "error",
"lodash/prefer-thru": "error",
"lodash/prefer-times": "error",
"lodash/prefer-wrapper-method": "error",
"lodash/preferred-alias": "error",
"lodash/prop-shorthand": ["error", "always"],
"lodash/prop-shorthand": [2, "always"],
"lodash/unwrap": "error",
"sonar/accessor-pairs": "error",
"sonar/alt-text": "error",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethang/eslint-config",
"version": "19.11.3",
"version": "19.11.4",
"repository": {
"url": "git+https://github.com/eglove/eslint-config-ethang.git"
},
Expand Down

0 comments on commit 415d8b9

Please sign in to comment.