@rhyster/eslint-config 1.6.21 → 1.6.23
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/dist/eslint.config.d.ts +22 -0
- package/dist/eslint.config.d.ts.map +1 -1
- package/dist/index.cjs +23 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +88 -0
- package/dist/index.d.mts +88 -0
- package/dist/index.d.ts +88 -0
- package/dist/index.mjs +23 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/index.d.ts +88 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/rules/airbnb/style.d.ts +22 -0
- package/dist/src/rules/airbnb/style.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/rules/airbnb/style.ts +22 -0
package/dist/src/index.d.ts
CHANGED
|
@@ -340,6 +340,27 @@ export declare const core: ({
|
|
|
340
340
|
ObjectPattern: boolean;
|
|
341
341
|
VariableDeclaration: boolean;
|
|
342
342
|
NewExpression: boolean;
|
|
343
|
+
ExportAllDeclaration: boolean;
|
|
344
|
+
ExportNamedDeclaration: boolean;
|
|
345
|
+
ImportExpression: boolean;
|
|
346
|
+
SequenceExpression: boolean;
|
|
347
|
+
ClassDeclaration: boolean;
|
|
348
|
+
ClassExpression: boolean;
|
|
349
|
+
TSDeclareFunction: boolean;
|
|
350
|
+
TSFunctionType: boolean;
|
|
351
|
+
TSConstructorType: boolean;
|
|
352
|
+
TSEmptyBodyFunctionExpression: boolean;
|
|
353
|
+
TSMethodSignature: boolean;
|
|
354
|
+
TSCallSignatureDeclaration: boolean;
|
|
355
|
+
TSConstructSignatureDeclaration: boolean;
|
|
356
|
+
TSEnumBody: boolean;
|
|
357
|
+
TSTypeLiteral: boolean;
|
|
358
|
+
TSInterfaceBody: boolean;
|
|
359
|
+
TSIndexSignature: boolean;
|
|
360
|
+
TSInterfaceDeclaration: boolean;
|
|
361
|
+
TSTupleType: boolean;
|
|
362
|
+
TSTypeParameterDeclaration: boolean;
|
|
363
|
+
TSTypeParameterInstantiation: boolean;
|
|
343
364
|
};
|
|
344
365
|
}];
|
|
345
366
|
'@stylistic/computed-property-spacing': ["error", string];
|
|
@@ -379,6 +400,7 @@ export declare const core: ({
|
|
|
379
400
|
flatTernaryExpressions: boolean;
|
|
380
401
|
ignoreComments: boolean;
|
|
381
402
|
}];
|
|
403
|
+
'@stylistic/indent-binary-ops': ["error", number];
|
|
382
404
|
'@stylistic/jsx-quotes': ["off", string];
|
|
383
405
|
'@stylistic/key-spacing': ["error", {
|
|
384
406
|
beforeColon: boolean;
|
|
@@ -1190,6 +1212,27 @@ export declare const node: [...({
|
|
|
1190
1212
|
ObjectPattern: boolean;
|
|
1191
1213
|
VariableDeclaration: boolean;
|
|
1192
1214
|
NewExpression: boolean;
|
|
1215
|
+
ExportAllDeclaration: boolean;
|
|
1216
|
+
ExportNamedDeclaration: boolean;
|
|
1217
|
+
ImportExpression: boolean;
|
|
1218
|
+
SequenceExpression: boolean;
|
|
1219
|
+
ClassDeclaration: boolean;
|
|
1220
|
+
ClassExpression: boolean;
|
|
1221
|
+
TSDeclareFunction: boolean;
|
|
1222
|
+
TSFunctionType: boolean;
|
|
1223
|
+
TSConstructorType: boolean;
|
|
1224
|
+
TSEmptyBodyFunctionExpression: boolean;
|
|
1225
|
+
TSMethodSignature: boolean;
|
|
1226
|
+
TSCallSignatureDeclaration: boolean;
|
|
1227
|
+
TSConstructSignatureDeclaration: boolean;
|
|
1228
|
+
TSEnumBody: boolean;
|
|
1229
|
+
TSTypeLiteral: boolean;
|
|
1230
|
+
TSInterfaceBody: boolean;
|
|
1231
|
+
TSIndexSignature: boolean;
|
|
1232
|
+
TSInterfaceDeclaration: boolean;
|
|
1233
|
+
TSTupleType: boolean;
|
|
1234
|
+
TSTypeParameterDeclaration: boolean;
|
|
1235
|
+
TSTypeParameterInstantiation: boolean;
|
|
1193
1236
|
};
|
|
1194
1237
|
}];
|
|
1195
1238
|
'@stylistic/computed-property-spacing': ["error", string];
|
|
@@ -1229,6 +1272,7 @@ export declare const node: [...({
|
|
|
1229
1272
|
flatTernaryExpressions: boolean;
|
|
1230
1273
|
ignoreComments: boolean;
|
|
1231
1274
|
}];
|
|
1275
|
+
'@stylistic/indent-binary-ops': ["error", number];
|
|
1232
1276
|
'@stylistic/jsx-quotes': ["off", string];
|
|
1233
1277
|
'@stylistic/key-spacing': ["error", {
|
|
1234
1278
|
beforeColon: boolean;
|
|
@@ -2143,6 +2187,27 @@ export declare const browser: [...({
|
|
|
2143
2187
|
ObjectPattern: boolean;
|
|
2144
2188
|
VariableDeclaration: boolean;
|
|
2145
2189
|
NewExpression: boolean;
|
|
2190
|
+
ExportAllDeclaration: boolean;
|
|
2191
|
+
ExportNamedDeclaration: boolean;
|
|
2192
|
+
ImportExpression: boolean;
|
|
2193
|
+
SequenceExpression: boolean;
|
|
2194
|
+
ClassDeclaration: boolean;
|
|
2195
|
+
ClassExpression: boolean;
|
|
2196
|
+
TSDeclareFunction: boolean;
|
|
2197
|
+
TSFunctionType: boolean;
|
|
2198
|
+
TSConstructorType: boolean;
|
|
2199
|
+
TSEmptyBodyFunctionExpression: boolean;
|
|
2200
|
+
TSMethodSignature: boolean;
|
|
2201
|
+
TSCallSignatureDeclaration: boolean;
|
|
2202
|
+
TSConstructSignatureDeclaration: boolean;
|
|
2203
|
+
TSEnumBody: boolean;
|
|
2204
|
+
TSTypeLiteral: boolean;
|
|
2205
|
+
TSInterfaceBody: boolean;
|
|
2206
|
+
TSIndexSignature: boolean;
|
|
2207
|
+
TSInterfaceDeclaration: boolean;
|
|
2208
|
+
TSTupleType: boolean;
|
|
2209
|
+
TSTypeParameterDeclaration: boolean;
|
|
2210
|
+
TSTypeParameterInstantiation: boolean;
|
|
2146
2211
|
};
|
|
2147
2212
|
}];
|
|
2148
2213
|
'@stylistic/computed-property-spacing': ["error", string];
|
|
@@ -2182,6 +2247,7 @@ export declare const browser: [...({
|
|
|
2182
2247
|
flatTernaryExpressions: boolean;
|
|
2183
2248
|
ignoreComments: boolean;
|
|
2184
2249
|
}];
|
|
2250
|
+
'@stylistic/indent-binary-ops': ["error", number];
|
|
2185
2251
|
'@stylistic/jsx-quotes': ["off", string];
|
|
2186
2252
|
'@stylistic/key-spacing': ["error", {
|
|
2187
2253
|
beforeColon: boolean;
|
|
@@ -4128,6 +4194,27 @@ export declare const vue: ({
|
|
|
4128
4194
|
ObjectPattern: boolean;
|
|
4129
4195
|
VariableDeclaration: boolean;
|
|
4130
4196
|
NewExpression: boolean;
|
|
4197
|
+
ExportAllDeclaration: boolean;
|
|
4198
|
+
ExportNamedDeclaration: boolean;
|
|
4199
|
+
ImportExpression: boolean;
|
|
4200
|
+
SequenceExpression: boolean;
|
|
4201
|
+
ClassDeclaration: boolean;
|
|
4202
|
+
ClassExpression: boolean;
|
|
4203
|
+
TSDeclareFunction: boolean;
|
|
4204
|
+
TSFunctionType: boolean;
|
|
4205
|
+
TSConstructorType: boolean;
|
|
4206
|
+
TSEmptyBodyFunctionExpression: boolean;
|
|
4207
|
+
TSMethodSignature: boolean;
|
|
4208
|
+
TSCallSignatureDeclaration: boolean;
|
|
4209
|
+
TSConstructSignatureDeclaration: boolean;
|
|
4210
|
+
TSEnumBody: boolean;
|
|
4211
|
+
TSTypeLiteral: boolean;
|
|
4212
|
+
TSInterfaceBody: boolean;
|
|
4213
|
+
TSIndexSignature: boolean;
|
|
4214
|
+
TSInterfaceDeclaration: boolean;
|
|
4215
|
+
TSTupleType: boolean;
|
|
4216
|
+
TSTypeParameterDeclaration: boolean;
|
|
4217
|
+
TSTypeParameterInstantiation: boolean;
|
|
4131
4218
|
};
|
|
4132
4219
|
}];
|
|
4133
4220
|
'@stylistic/computed-property-spacing': ["error", string];
|
|
@@ -4167,6 +4254,7 @@ export declare const vue: ({
|
|
|
4167
4254
|
flatTernaryExpressions: boolean;
|
|
4168
4255
|
ignoreComments: boolean;
|
|
4169
4256
|
}];
|
|
4257
|
+
'@stylistic/indent-binary-ops': ["error", number];
|
|
4170
4258
|
'@stylistic/jsx-quotes': ["off", string];
|
|
4171
4259
|
'@stylistic/key-spacing': ["error", {
|
|
4172
4260
|
beforeColon: boolean;
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,UAAU,MAAM,iBAAiB,CAAC;AAiBzC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAmBrC,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA/Be,OAAO,WACpC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,UAAU,MAAM,iBAAiB,CAAC;AAiBzC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAmBrC,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA/Be,OAAO,WACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiCmB,CAAC;AAEvB,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBApCe,OAAO,WACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmD0B,CAAC;AAE9B,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAtDY,OAAO,WACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2D0B,CAAC;AAE9B,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA9DgB,OAAO,WACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsE0B,CAAC"}
|
|
@@ -52,6 +52,27 @@ declare const _default: {
|
|
|
52
52
|
ObjectPattern: boolean;
|
|
53
53
|
VariableDeclaration: boolean;
|
|
54
54
|
NewExpression: boolean;
|
|
55
|
+
ExportAllDeclaration: boolean;
|
|
56
|
+
ExportNamedDeclaration: boolean;
|
|
57
|
+
ImportExpression: boolean;
|
|
58
|
+
SequenceExpression: boolean;
|
|
59
|
+
ClassDeclaration: boolean;
|
|
60
|
+
ClassExpression: boolean;
|
|
61
|
+
TSDeclareFunction: boolean;
|
|
62
|
+
TSFunctionType: boolean;
|
|
63
|
+
TSConstructorType: boolean;
|
|
64
|
+
TSEmptyBodyFunctionExpression: boolean;
|
|
65
|
+
TSMethodSignature: boolean;
|
|
66
|
+
TSCallSignatureDeclaration: boolean;
|
|
67
|
+
TSConstructSignatureDeclaration: boolean;
|
|
68
|
+
TSEnumBody: boolean;
|
|
69
|
+
TSTypeLiteral: boolean;
|
|
70
|
+
TSInterfaceBody: boolean;
|
|
71
|
+
TSIndexSignature: boolean;
|
|
72
|
+
TSInterfaceDeclaration: boolean;
|
|
73
|
+
TSTupleType: boolean;
|
|
74
|
+
TSTypeParameterDeclaration: boolean;
|
|
75
|
+
TSTypeParameterInstantiation: boolean;
|
|
55
76
|
};
|
|
56
77
|
}];
|
|
57
78
|
'@stylistic/computed-property-spacing': ["error", string];
|
|
@@ -91,6 +112,7 @@ declare const _default: {
|
|
|
91
112
|
flatTernaryExpressions: boolean;
|
|
92
113
|
ignoreComments: boolean;
|
|
93
114
|
}];
|
|
115
|
+
'@stylistic/indent-binary-ops': ["error", number];
|
|
94
116
|
'@stylistic/jsx-quotes': ["off", string];
|
|
95
117
|
'@stylistic/key-spacing': ["error", {
|
|
96
118
|
beforeColon: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../src/rules/airbnb/style.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../src/rules/airbnb/style.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBA8sB0B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rhyster/eslint-config",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.23",
|
|
4
4
|
"description": "ESLint config",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@eslint/js": "^9.19.0",
|
|
49
|
-
"@stylistic/eslint-plugin": "^
|
|
49
|
+
"@stylistic/eslint-plugin": "^3.0.1",
|
|
50
50
|
"confusing-browser-globals": "^1.0.11",
|
|
51
51
|
"eslint-import-resolver-typescript": "^3.7.0",
|
|
52
52
|
"eslint-plugin-import-x": "^4.6.1",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"typescript-eslint": "^8.23.0",
|
|
57
57
|
"vue-eslint-parser": "^9.4.3"
|
|
58
58
|
},
|
|
59
|
-
"packageManager": "pnpm@
|
|
59
|
+
"packageManager": "pnpm@10.2.0"
|
|
60
60
|
}
|
|
@@ -89,6 +89,27 @@ export default {
|
|
|
89
89
|
ObjectPattern: false,
|
|
90
90
|
VariableDeclaration: false,
|
|
91
91
|
NewExpression: false,
|
|
92
|
+
ExportAllDeclaration: false,
|
|
93
|
+
ExportNamedDeclaration: false,
|
|
94
|
+
ImportExpression: false,
|
|
95
|
+
SequenceExpression: false,
|
|
96
|
+
ClassDeclaration: false,
|
|
97
|
+
ClassExpression: false,
|
|
98
|
+
TSDeclareFunction: false,
|
|
99
|
+
TSFunctionType: false,
|
|
100
|
+
TSConstructorType: false,
|
|
101
|
+
TSEmptyBodyFunctionExpression: false,
|
|
102
|
+
TSMethodSignature: false,
|
|
103
|
+
TSCallSignatureDeclaration: false,
|
|
104
|
+
TSConstructSignatureDeclaration: false,
|
|
105
|
+
TSEnumBody: false,
|
|
106
|
+
TSTypeLiteral: false,
|
|
107
|
+
TSInterfaceBody: false,
|
|
108
|
+
TSIndexSignature: false,
|
|
109
|
+
TSInterfaceDeclaration: false,
|
|
110
|
+
TSTupleType: false,
|
|
111
|
+
TSTypeParameterDeclaration: false,
|
|
112
|
+
TSTypeParameterInstantiation: false,
|
|
92
113
|
},
|
|
93
114
|
},
|
|
94
115
|
],
|
|
@@ -182,6 +203,7 @@ export default {
|
|
|
182
203
|
ignoreComments: false,
|
|
183
204
|
},
|
|
184
205
|
],
|
|
206
|
+
'@stylistic/indent-binary-ops': ['error', 4],
|
|
185
207
|
|
|
186
208
|
// specify whether double or single quotes should be used in JSX attributes
|
|
187
209
|
// https://eslint.style/rules/default/jsx-quotes
|