@ethang/eslint-config 19.7.0 → 19.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  > [!CAUTION]
6
6
  > Do not use this with Prettier! Styling rules are included.
7
7
 
8
- - 890 errored rules.
8
+ - 887 errored rules.
9
9
  - 289 rules from [eslint-plugin-sonarjs](https://github.com/SonarSource/SonarJS/blob/master/packages/jsts/src/rules/README.md)
10
10
  - 145 rules from [@eslint/js](https://github.com/eslint/eslint/tree/main/packages/js)
11
11
  - 113 rules from [sindresorhus/eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
@@ -19,7 +19,6 @@
19
19
  - 7 rules from [@eslint/markdown](https://github.com/eslint/markdown)
20
20
  - 5 rules from [@tanstack/eslint-plugin-query](https://tanstack.com/query/latest/docs/eslint/eslint-plugin-query)
21
21
  - 4 rules from [eslint-plugin-barrel-files](https://github.com/thepassle/eslint-plugin-barrel-files)
22
- - 3 rules from [exception-handling](https://github.com/Akronae/eslint-plugin-exception-handling)
23
22
  - 2 rules from [@eslint/json](https://github.com/eslint/json)
24
23
  - 1 rule from [eslint-plugin-depend](https://github.com/es-tooling/eslint-plugin-depend/tree/main)
25
24
  - 1 rule from [@cspell/eslint-plugin](https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-eslint-plugin)
package/eslint.config.js CHANGED
@@ -932,9 +932,9 @@ export default tseslint.config(
932
932
  "sonar/weak-ssl": "error",
933
933
  "sonar/x-powered-by": "error",
934
934
  "sonar/xml-parser-xxe": "error",
935
- "exception-handling/might-throw": "error",
936
- "exception-handling/no-unhandled": "error",
937
- "exception-handling/use-error-cause": "error",
935
+ "exception-handling/might-throw": "off",
936
+ "exception-handling/no-unhandled": "off",
937
+ "exception-handling/use-error-cause": "off",
938
938
  "tailwind/classnames-order": "error",
939
939
  "tailwind/enforces-negative-arbitrary-values": "error",
940
940
  "tailwind/enforces-shorthand": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethang/eslint-config",
3
- "version": "19.7.0",
3
+ "version": "19.7.1",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/eglove/eslint-config-ethang.git"
6
6
  },
@@ -9,4 +9,5 @@ export const exceptionHandlingRules = genRules(
9
9
  ruleNames,
10
10
  [],
11
11
  "exception-handling",
12
+ "off", // TODO fix with https://github.com/Akronae/eslint-plugin-exception-handling/issues/5
12
13
  );