mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
* Run prettier on cypress folder
* Test Restyled
* Revert "Test Restyled"
This reverts commit 13d43968fe.
13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
module.exports = {
|
|
extends: ["plugin:cypress/recommended"],
|
|
plugins: ["cypress", "chai-friendly"],
|
|
env: {
|
|
"cypress/globals": true,
|
|
},
|
|
rules: {
|
|
"func-names": ["error", "never"],
|
|
"no-unused-expressions": 0,
|
|
"chai-friendly/no-unused-expressions": 2,
|
|
},
|
|
};
|