mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
12 lines
436 B
Plaintext
12 lines
436 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": ["plugin:@typescript-eslint/recommended"],
|
|
"parserOptions": { "ecmaVersion": "latest", "sourceType": "script" },
|
|
"rules": {
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
|
|
"semi": ["error", "always"],
|
|
"@typescript-eslint/no-empty-interface": 0
|
|
}
|
|
}
|