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

23 lines
408 B
JSON
Raw Normal View History

2020-02-28 11:09:30 +00:00
{
2020-03-23 14:02:47 +00:00
"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
2020-02-28 11:09:30 +00:00
},
2020-03-23 14:02:47 +00:00
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["react", "cypress"]
}