17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
![]() |
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true,
|
||
|
browser: true,
|
||
|
es6: true,
|
||
|
},
|
||
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-explicit-any": 0,
|
||
|
"@typescript-eslint/ban-ts-comment": 0,
|
||
|
"@typescript-eslint/no-non-null-assertion": 0,
|
||
|
},
|
||
|
};
|