13 lines
285 B
Text
13 lines
285 B
Text
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"prefer-const": "off",
|
|
"no-restricted-syntax": "off"
|
|
}
|
|
}
|