-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
42 lines (41 loc) · 1.06 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
{
// https://eslint.org/docs/user-guide/configuring#specifying-environments
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["babel-preset-gatsby"]
}
},
"rules": {
// https://eslint.org/docs/2.0.0/rules/strict
"strict": 0
},
"extends": [
// https://eslint.org/docs/rules/
"eslint:recommended",
// https://github.com/yannickcr/eslint-plugin-react#recommended
"plugin:react/recommended",
// https://github.com/benmosher/eslint-plugin-import
"plugin:import/recommended"
// https://github.com/playwright-community/eslint-plugin-playwright
//"plugin:playwright/jest-playwright"
],
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"paths": ["./src"]
}
}
}
}