We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb14cc0 commit 05da90aCopy full SHA for 05da90a
1 file changed
.eslintrc.json
@@ -10,9 +10,9 @@
10
{
11
"files": ["**/*.ts?(x)"],
12
"plugins": ["@typescript-eslint", "no-relative-import-paths"],
13
+ "extends": ["plugin:@typescript-eslint/recommended"],
14
"rules": {
15
"@typescript-eslint/consistent-type-imports": "error",
- "@typescript-eslint/no-unused-vars": "error",
16
"no-relative-import-paths/no-relative-import-paths": [
17
"warn",
18
@@ -24,12 +24,14 @@
24
},
25
26
"files": ["**/*.md?(x)"],
27
- "extends": ["plugin:mdx/recommended"]
+ "extends": ["plugin:mdx/recommended"],
28
+ "rules": {
29
+ "react/jsx-no-undef": "off"
30
+ }
31
32
33
"files": ["**/*.{mdx,tsx}"],
34
- "react/jsx-no-undef": "off",
35
"react/function-component-definition": [
36
"error",
37
0 commit comments