Skip to content

Commit

Permalink
v19.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eglove committed Oct 5, 2024
1 parent 741eb44 commit a4979b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
> [!CAUTION]
> Do not use this with Prettier! Styling rules are included.
- 894 errored rules.
- 895 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)
- 67 rules from [@stylistic/eslint-plugin](https://eslint.style/)
- 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)
- 25 rules from [@stylistic/eslint-plugin-ts](https://eslint.style/)
Expand Down
5 changes: 4 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,10 @@ export default tseslint.config(
"stylistic/no-mixed-operators": "error",
"stylistic/no-mixed-spaces-and-tabs": "error",
"stylistic/no-multi-spaces": "error",
"stylistic/no-multiple-empty-lines": { max: 1, maxEOF: 1, maxBOF: 0 },
"stylistic/no-multiple-empty-lines": [
"error",
{ max: 1, maxEOF: 1, maxBOF: 0 },
],
"stylistic/no-tabs": "error",
"stylistic/no-trailing-spaces": "error",
"stylistic/no-whitespace-before-property": "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.10.3",
"version": "19.11.0",
"repository": {
"url": "git+https://github.com/eglove/eslint-config-ethang.git"
},
Expand Down

0 comments on commit a4979b2

Please sign in to comment.