Command-fix/.eslintrc.json

12 lines
259 B
JSON
Raw Normal View History

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