{ "root": true, "ignorePatterns": [ "lib/**/*" ], "parserOptions": { "project": [ "./tsconfig.json" ] }, "parser": "@typescript-eslint/parser", "plugins": [ "import", "@typescript-eslint" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking" ], "rules": { "comma-dangle": [ "error", "always-multiline" ], "no-param-reassign": [ "error", { "props": true } ], "no-unused-vars": "off", "object-curly-spacing": [ "error", "always" ], "quotes": [ "error", "double" ], "space-before-blocks": [ "error", "always" ], "space-before-function-paren": [ "error", { "anonymous": "always", "asyncArrow": "always", "named": "never" } ], "@typescript-eslint/indent": [ "error", 2 ], "@typescript-eslint/no-namespace": [ "error", { "allowDeclarations": true, "allowDefinitionFiles": true } ], "@typescript-eslint/no-unused-vars": [ "warn", { "args": "all", "argsIgnorePattern": "^_", "ignoreRestSiblings": true } ] } }