Command-fix/.eslintrc.json
2021-10-28 15:32:32 -06:00

12 lines
325 B
JSON

{
"extends": ["eslint:recommended", "standard",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"],
"plugins": ["@typescript-eslint"],
"rules": {
"semi": [2, "always"]
},
"parserOptions": {
"project": ["tsconfig.json"]
}
}