mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
* style: pretty please * feat: no package.lock.json anymore Co-authored-by: jacoobes <jacoobes@users.noreply.github.com> Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com>
14 lines
532 B
Plaintext
14 lines
532 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,
|
|
"@typescript-eslint/ban-types": 0,
|
|
"@typescript-eslint/no-explicit-any": "off"
|
|
}
|
|
}
|