15 lines
332 B
Plaintext
15 lines
332 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"semi": [2, "always"],
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
}
|