mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
* remove it.only, left by mistake * use no-only-tests * 'off' should be used instead of 'none' * Dedup jest/only rule * always error for .only
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
module.exports = {
|
|
extends: ["plugin:jest/recommended"],
|
|
plugins: ["jest"],
|
|
env: {
|
|
"jest/globals": true,
|
|
},
|
|
rules: {
|
|
"jest/no-focused-tests": "off",
|
|
},
|
|
}; |