graphql-engine/console/cypress/.eslintrc
Aleksandra Sikora 8c21ca5d21 console: revert improve data/relationships e2e tests
The changes turned out to be flaky — tests were failing from time to time, and blocking other PRs from being merged.

Reverts hasura/graphql-engine-mono#1037

GitOrigin-RevId: 97d95156e8d348f2e89ec33e06ffaac9bf75a2f9
2021-05-12 07:37:45 +00:00

19 lines
386 B
Plaintext

{
"plugins": ["cypress", "chai-friendly"],
"env": {
"cypress/globals": true
},
"rules": {
"no-unused-expressions": "off",
"chai-friendly/no-unused-expressions": "error",
"no-underscore-dangle": "off",
"@typescript-eslint/no-unused-expressions": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
]
}
}