forked from casper-network/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
48 lines (48 loc) · 1.25 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
{
"settings": {
"react": {
"version": "latest"
}
},
"env": {
"browser": true,
"es2021": true
},
"extends": ["plugin:react/recommended", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "import", "prettier"],
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": 0,
"react/display-name": [0],
"react/jsx-filename-extension": [
2,
{
"extensions": [".jsx", ".tsx"]
}
],
"import/extensions": 0,
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"import/no-default-export": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"no-plusplus": 0,
"no-underscore-dangle": 0,
"object-shorthand": 0,
"prettier/prettier": 1
},
"ignorePatterns": ["node_modules", "public", "build", ".docusaurus"]
}