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