2 "extends": "standard-with-typescript",
9 "no-lone-blocks": "off",
10 "no-mixed-operators": "off",
17 "array-bracket-spacing": [
23 "consistent-as-needed"
25 "padded-blocks": "off",
26 "prefer-regex-literals": "off",
27 "no-async-promise-executor": "off",
28 "dot-notation": "off",
29 "promise/param-names": "off",
30 "import/first": "off",
31 "operator-linebreak": [
41 "@typescript-eslint/indent": [
46 "MemberExpression": "off"
49 "@typescript-eslint/consistent-type-assertions": [
52 "assertionStyle": "as"
55 "@typescript-eslint/array-type": [
61 "@typescript-eslint/restrict-template-expressions": [
67 "@typescript-eslint/no-this-alias": [
70 "allowDestructuring": true, // Allow `const { props, state } = this`; false by default
71 "allowedNames": ["self"] // Allow `const self = this`; `[]` by default
75 "@typescript-eslint/return-await": "off",
76 "@typescript-eslint/dot-notation": "off",
77 "@typescript-eslint/method-signature-style": "off",
78 "@typescript-eslint/no-base-to-string": "off",
79 "@typescript-eslint/quotes": "off",
80 "@typescript-eslint/no-var-requires": "off",
81 "@typescript-eslint/explicit-function-return-type": "off",
82 "@typescript-eslint/promise-function-async": "off",
83 "@typescript-eslint/no-dynamic-delete": "off",
84 "@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
85 "@typescript-eslint/strict-boolean-expressions": "off",
86 "@typescript-eslint/consistent-type-definitions": "off",
87 "@typescript-eslint/no-misused-promises": "off",
88 "@typescript-eslint/no-namespace": "off",
89 "@typescript-eslint/no-empty-interface": "off",
90 "@typescript-eslint/no-extraneous-class": "off",
91 "@typescript-eslint/no-use-before-define": "off",
93 "require-await": "off",
94 "@typescript-eslint/require-await": "error",
97 "@typescript-eslint/restrict-plus-operands": "off"
103 "EXPERIMENTAL_useSourceOfProjectReferenceRedirect": true,
106 "./shared/tsconfig.json",
107 "./scripts/tsconfig.json",
108 "./server/tsconfig.json",
109 "./server/tools/tsconfig.json"