Issue #115: Remove cypress config for eslint

This commit is contained in:
Andrea Mocci 2020-05-11 14:40:15 +02:00
parent 50ac55db8b
commit 22d0ba078a
1 changed files with 2 additions and 8 deletions

View File

@ -23,10 +23,6 @@
"react/no-unused-prop-types": "error",
"react/prop-types": "error",
"react/react-in-jsx-scope": "error",
"cypress/no-assigning-return-values": "error",
"cypress/no-unnecessary-waiting": "error",
"cypress/assertion-before-screenshot": "warn",
"cypress/no-force": "warn",
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2,
"indent": [0, 4]
@ -34,14 +30,12 @@
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:cypress/recommended",
"airbnb"
],
"env": {
"node": true,
"browser": true,
"jest": true,
"cypress/globals": true
"jest": true
},
"globals": {
@ -55,6 +49,6 @@
}
},
"plugins": ["react", "cypress", "chai-friendly"]
"plugins": ["react", "chai-friendly"]
}