You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
510 B
20 lines
510 B
{ |
|
"extends": ["eslint:recommended", "plugin:prettier/recommended", "plugin:@typescript-eslint/recommended"], |
|
"parser": "@typescript-eslint/parser", |
|
"parserOptions": { |
|
"ecmaVersion": 11, |
|
"sourceType": "module" |
|
}, |
|
"plugins": ["@typescript-eslint", "jest"], |
|
"rules": { |
|
"no-var": 2, |
|
"prefer-arrow-callback": 2, |
|
"@typescript-eslint/ban-ts-comment": 0, |
|
"@typescript-eslint/no-empty-function": 1 |
|
}, |
|
"env": { |
|
"browser": true, |
|
"es6": true, |
|
"jest/globals": true |
|
} |
|
}
|
|
|