mirror of
https://github.com/OBKoro1/autoCommit.git
synced 2024-11-05 10:09:29 +08:00
18 lines
462 B
JavaScript
18 lines
462 B
JavaScript
module.exports = {
|
|
extends: ['airbnb-typescript/base'],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-restricted-syntax': 'off',
|
|
'no-continue': 'off',
|
|
// 禁止使用 var
|
|
'no-var': 'error',
|
|
// 优先使用 interface 而不是 type
|
|
'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
|
|
},
|
|
}
|