mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-13 16:45:12 +01:00
28 lines
512 B
Plaintext
28 lines
512 B
Plaintext
{
|
|
"plugins": ["react", "graphql", "compat"],
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true,
|
|
"modules": true
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"globals": {
|
|
"graphql": true
|
|
},
|
|
"extends": ["eslint:recommended", "plugin:react/recommended"],
|
|
"rules": {
|
|
"quotes": ["error", "single"],
|
|
"semi": ["error", "never"],
|
|
"compat/compat": "error"
|
|
},
|
|
"settings": {
|
|
"polyfills": ["promises"]
|
|
}
|
|
}
|