You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
506 B
33 lines
506 B
{
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"plugins": [
|
|
"typescript"
|
|
],
|
|
"rules": {
|
|
"no-unused-vars": "warn",
|
|
"typescript/no-unused-vars": "warn",
|
|
"semi": [
|
|
"warn",
|
|
"never"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single",
|
|
{
|
|
"avoidEscape": true
|
|
}
|
|
]
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": 2018
|
|
}
|
|
} |