{ "root": true, "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint", "prettier", "simple-import-sort" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], "rules": { "curly": [ "error", "all" ], "prettier/prettier": [ "warn", { "semi": false, "singleQuote": false, "tabWidth": 2, "trailingComma": "es5" } ], "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-namespace": "off", "prefer-const": 1, "@typescript-eslint/no-unused-vars": [ 2, { "vars": "all", "args": "none", "varsIgnorePattern": "h" } ], "@typescript-eslint/no-unused-expressions": [ 2, { "allowShortCircuit": true, "allowTernary": true } ], "@typescript-eslint/explicit-module-boundary-types": "off", "no-case-declarations": "off", "no-inner-declarations": "off", "sort-imports": "off", "simple-import-sort/imports": [ "error", { "groups": [ [ "@stencil/core", "cryptly", "flagly", "gracely", "isoly", "paramly", "selectively", "langly", "tidily", "uply", "authly", "persistly", "servly", "servly-azure", "smoothly", "^\\u0000", "^@?\\w", "^", "^\\." ] ] } ] }, "settings": {} }