{ "env": { "es2021": true, "node": true }, "extends": [ "google" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "rules": { "linebreak-style": 0, "indent": [ "error", 4 ], "no-multi-spaces": [ "error", { "ignoreEOLComments": true } ], "max-len": [ "error", { "code": 120, "ignoreUrls": true, "ignoreStrings": true, "ignoreComments": true, "ignoreRegExpLiterals": true, "ignoreTrailingComments": true, "ignoreTemplateLiterals": true } ], "require-jsdoc": [ "error", { "require": { "MethodDefinition": false, "ClassDeclaration": false, "FunctionExpression": false, "FunctionDeclaration": false, "ArrowFunctionExpression": false } } ] } }