mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
d3887071af
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
20 lines
421 B
Plaintext
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"]
|
|
}
|