2022-03-14 14:46:21 +08:00
|
|
|
{
|
|
|
|
"extends": "./node_modules/mwts/",
|
|
|
|
"ignorePatterns": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"test",
|
|
|
|
"jest.config.js",
|
|
|
|
"typings",
|
|
|
|
"public/**/**",
|
2023-04-17 00:43:41 +08:00
|
|
|
"view/**/**",
|
|
|
|
"packages"
|
2022-03-14 14:46:21 +08:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"jest": true
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
|
|
"node/no-extraneous-import": "off",
|
|
|
|
"no-empty": "off",
|
|
|
|
"node/no-extraneous-require": "off",
|
2024-02-18 15:54:20 +08:00
|
|
|
"node/no-unpublished-import": "off",
|
2022-03-14 14:46:21 +08:00
|
|
|
"eqeqeq": "off",
|
|
|
|
"node/no-unsupported-features/node-builtins": "off",
|
|
|
|
"@typescript-eslint/ban-types": "off",
|
|
|
|
"no-control-regex": "off",
|
|
|
|
"prefer-const": "off"
|
|
|
|
}
|
|
|
|
}
|