Skip to content

Commit 25659b7

Browse files
Refactor .eslintrc for improved plugin formatting and change local-rules linting level to warn
1 parent 4b5ecdd commit 25659b7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.eslintrc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"root": true,
33
"extends": "next/core-web-vitals",
44
"parser": "@typescript-eslint/parser",
5-
"plugins": ["@typescript-eslint", "eslint-plugin-react-compiler", "local-rules"],
5+
"plugins": [
6+
"@typescript-eslint",
7+
"eslint-plugin-react-compiler",
8+
"local-rules"
9+
],
610
"rules": {
711
"no-unused-vars": "off",
812
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
@@ -30,7 +34,7 @@
3034
"react-hooks/exhaustive-deps": "off",
3135
"react/no-unknown-property": "off",
3236
"react-compiler/react-compiler": "off",
33-
"local-rules/lint-markdown-code-blocks": "error"
37+
"local-rules/lint-markdown-code-blocks": "warn"
3438
}
3539
}
3640
]

0 commit comments

Comments
 (0)