mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
10 lines
380 B
Plaintext
10 lines
380 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"]
|
|
}
|
|
} |