This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/.eslintrc.json

29 lines
527 B
JSON

{
"env": {
"browser": true,
"es6": true,
"cypress/globals": true,
"node": true
},
"extends": [
"prettier",
"eslint:recommended",
"plugin:react/recommended"
],
"settings": {
"react": {
"version": "detect"
}
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"cypress"
]
}