11 lines
306 B
JavaScript
11 lines
306 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
"@typescript-eslint/no-non-null-assertion": "off",
|
||
|
},
|
||
|
};
|