mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 11:07:57 +01:00
af942a27e4
- Automated reformatting - Manually change code where Prettier reformatting causes issues - Revert "Disable Prettier formatting in CI for now"
22 lines
585 B
JavaScript
22 lines
585 B
JavaScript
/**
|
||
* Overrides to our base ESLint configuration specifically for our integration tests.
|
||
*/
|
||
module.exports = {
|
||
rules: {
|
||
// To support code running in Node without transpiling.
|
||
'@typescript-eslint/no-var-requires': 'off',
|
||
'no-underscore-dangle': ['error', { allow: ['__BROWSER_GLOBAL__'] }],
|
||
// So we can lint the code without resolving imports, in case the sub-package isn’t installed.
|
||
'import/no-unresolved': 'off',
|
||
},
|
||
env: {
|
||
jest: true,
|
||
browser: true,
|
||
node: true,
|
||
},
|
||
globals: {
|
||
page: 'readonly',
|
||
TEST_ORIGIN: 'readonly',
|
||
},
|
||
};
|