1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2025-10-14 20:24:04 +02:00

Compare commits

..

4 Commits

3 changed files with 332 additions and 406 deletions

View File

@@ -194,6 +194,7 @@
"unicorn/consistent-assert": "error", "unicorn/consistent-assert": "error",
"unicorn/no-accessor-recursion": "error", "unicorn/no-accessor-recursion": "error",
"unicorn/no-array-reverse": "off", "unicorn/no-array-reverse": "off",
"unicorn/no-array-sort": "off",
"react/no-array-index-key": "off", "react/no-array-index-key": "off",
"react-hooks/rules-of-hooks": "error", "react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error", "react-hooks/exhaustive-deps": "error",
@@ -250,7 +251,9 @@
"import-x/no-named-default": "error", "import-x/no-named-default": "error",
"import-x/no-empty-named-blocks": "error", "import-x/no-empty-named-blocks": "error",
"import-x/no-anonymous-default-export": "error", "import-x/no-anonymous-default-export": "error",
"import-x/consistent-type-specifier-style": ["error", "prefer-top-level"] "import-x/consistent-type-specifier-style": ["error", "prefer-top-level"],
"import-x/no-unassigned-import": "off",
"import-x/no-named-as-default-member": "off"
}, },
"overrides": [ "overrides": [
{ {

721
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -75,18 +75,18 @@
} }
}, },
"devDependencies": { "devDependencies": {
"@types/node": "24.5.2", "@types/node": "24.7.0",
"globals": "16.4.0", "globals": "16.4.0",
"editorconfig-checker": "6.1.0", "editorconfig-checker": "6.1.0",
"oxlint": "1.18.0", "oxlint": "1.20.0",
"@oxlint/migrate": "1.18.0", "@oxlint/migrate": "1.20.0",
"eslint": "9.36.0", "eslint": "9.37.0",
"eslint-plugin-promise": "7.2.1", "eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "61.0.2", "eslint-plugin-unicorn": "61.0.2",
"eslint-plugin-import-x": "4.16.1", "eslint-plugin-import-x": "4.16.1",
"typescript-eslint": "8.44.1", "typescript-eslint": "8.46.0",
"prettier": "3.6.2", "prettier": "3.6.2",
"semantic-release": "24.2.9", "semantic-release": "24.2.9",
"typescript": "5.9.2" "typescript": "5.9.3"
} }
} }