serum-dev-tools/ts/.eslintrc

11 lines
324 B
Plaintext
Raw Permalink Normal View History

2022-04-02 08:39:14 -07:00
{
2022-04-02 09:17:19 -07:00
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
2022-04-02 08:39:14 -07:00
"parser": "@typescript-eslint/parser",
2022-04-02 09:17:19 -07:00
"plugins": ["@typescript-eslint"],
2022-04-02 08:39:14 -07:00
"rules": {
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error"
}
}