@schoero/configs 1.0.37 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eslint/typescript.js +2 -2
- package/package.json +1 -1
package/eslint/typescript.js
CHANGED
|
@@ -133,7 +133,7 @@ export const typescript = [
|
|
|
133
133
|
|
|
134
134
|
// functions
|
|
135
135
|
"eslint-plugin-typescript/unified-signatures": ["warn", { ignoreDifferentlyNamedParameters: true }],
|
|
136
|
-
"eslint-plugin-typescript/adjacent-overload-signatures": "
|
|
136
|
+
"eslint-plugin-typescript/adjacent-overload-signatures": "off", // conflicts with perfectionist/sort-interfaces
|
|
137
137
|
"eslint-plugin-typescript/prefer-function-type": "warn",
|
|
138
138
|
|
|
139
139
|
// promise
|
|
@@ -148,7 +148,7 @@ export const typescript = [
|
|
|
148
148
|
"eslint-plugin-typescript/no-unnecessary-type-arguments": "warn",
|
|
149
149
|
"eslint-plugin-typescript/prefer-as-const": "warn",
|
|
150
150
|
"eslint-plugin-typescript/prefer-reduce-type-parameter": "warn",
|
|
151
|
-
"eslint-plugin-typescript/sort-type-constituents": "
|
|
151
|
+
"eslint-plugin-typescript/sort-type-constituents": "off", // conflicts with perfectionist/sort-union-types
|
|
152
152
|
|
|
153
153
|
// Promise
|
|
154
154
|
"eslint-plugin-typescript/no-floating-promises": "warn",
|
package/package.json
CHANGED