forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
50 lines (50 loc) · 1.17 KB
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:compat/recommended"
],
"env": {
"browser": true
},
"plugins": ["react", "react-hooks", "jsx-a11y", "compat"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"version": 2021,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"project": ["./tsconfig.json"]
},
"rules": {
"eqeqeq": 2,
"no-unused-vars": "off",
"no-mixed-operators": "off",
"jsx-a11y/href-no-hash": "off",
"react/prop-types": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"react/react-in-jsx-scope": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"prettier/prettier": [
"error",
{
"printWidth": 80,
"trailingComma": "es5"
}
]
},
"settings": {
"react": {
"version": "detect"
}
}
}