mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
module.exports = {
|
|
extends: ["plugin:jest/recommended"],
|
|
plugins: ["jest"],
|
|
env: {
|
|
"jest/globals": true,
|
|
},
|
|
rules: {
|
|
"jest/no-focused-tests": "off",
|
|
},
|
|
};
|