graphql-engine/console/cypress/.eslintrc
Ikechukwu Eze d3887071af console: improve data/relationships e2e tests
This is the first step in making our cypress test faster.
Will clean the comments up in the coming days
Running time imporves from ~7mins to ~83secs

GitOrigin-RevId: d8d2b23c5a46789a3828dac1c6652034bd0bfc1c
2021-05-06 10:20:44 +00:00

20 lines
421 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
}
]
},
"ignorePatterns": ["**/*.d.ts"]
}