@ethang/eslint-config 19.0.5 → 19.0.6

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/config.react.js CHANGED
@@ -14,7 +14,7 @@ export default tseslint.config({
14
14
  "react-hooks": reactHooks,
15
15
  },
16
16
  rules: {
17
- "react-hooks/exhaustive-deps": "error",
17
+ "react-hooks/exhaustive-deps": "off", // fix w/ v9 compatibility
18
18
  "react-hooks/rules-of-hooks": "off", // fix w/ v9 compatibility
19
19
  "react/dom/no-children-in-void-dom-elements": "error",
20
20
  "react/dom/no-dangerously-set-innerhtml": "error",
package/eslint.config.js CHANGED
@@ -25,7 +25,7 @@ export const languageOptions = {
25
25
  export const ignores = ["eslint.config.js", "node_modules", "dist"];
26
26
 
27
27
  export default tseslint.config({
28
- files: ["**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts,css,html}"],
28
+ files: ["**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}"],
29
29
  ignores,
30
30
  languageOptions,
31
31
  plugins: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethang/eslint-config",
3
- "version": "19.0.5",
3
+ "version": "19.0.6",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/eglove/eslint-config-ethang.git"
6
6
  },