Command-fix/.eslintrc.json

12 lines
259 B
JSON
Raw Permalink Normal View History

2017-09-29 19:38:00 -04:00
{
2021-10-28 17:32:32 -04:00
"extends": ["eslint:recommended", "standard",
2022-12-31 04:05:32 -05:00
"plugin:@typescript-eslint/recommended"
],
2021-10-28 17:32:32 -04:00
"plugins": ["@typescript-eslint"],
2017-09-29 19:38:00 -04:00
"rules": {
"semi": [2, "always"]
2021-10-28 17:32:32 -04:00
},
"parserOptions": {
"project": ["tsconfig.json"]
2017-09-29 19:38:00 -04:00
}
}