mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"es2022": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"root": true,
|
|
"rules": {
|
|
"no-restricted-globals": ["error", "event", "self"],
|
|
"no-const-assign": ["error"],
|
|
"no-debugger": ["error"],
|
|
"no-dupe-class-members": ["error"],
|
|
"no-dupe-keys": ["error"],
|
|
"no-dupe-args": ["error"],
|
|
"no-dupe-else-if": ["error"],
|
|
"no-unsafe-negation": ["error"],
|
|
"no-duplicate-imports": ["error"],
|
|
"valid-typeof": ["error"],
|
|
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": false, "caughtErrors": "all" }],
|
|
"no-restricted-syntax": [
|
|
"error",
|
|
{
|
|
"selector": "MemberExpression[object.name='test'][property.name='only']",
|
|
"message": "test.only(...) is forbidden",
|
|
},
|
|
{
|
|
"selector": "MemberExpression[object.name='describe'][property.name='only']",
|
|
"message": "describe.only(...) is forbidden",
|
|
}
|
|
],
|
|
},
|
|
"globals": {
|
|
"describe": true,
|
|
"expect": true,
|
|
"test": true,
|
|
"beforeEach": true,
|
|
"beforeAll": true,
|
|
"afterEach": true,
|
|
"afterAll": true,
|
|
"jest": true,
|
|
},
|
|
}
|