eslint-config-silverwind 100.1.0 → 100.1.2
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/index.d.ts.map +1 -1
- package/dist/index.js +14 -1
- package/dist/index.json +13 -0
- package/package.json +1 -1
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,QAAQ,CAAC;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,QAAQ,CAAC;;AA6FnC,wBA+C4B"}
|
package/dist/index.js
CHANGED
|
@@ -293,6 +293,14 @@ const eslintrc = o({
|
|
|
293
293
|
"react/jsx-uses-vars": [2],
|
|
294
294
|
"validate-jsx-nesting/no-invalid-jsx-nesting": [2]
|
|
295
295
|
}
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"files": ["openapi.d.ts"],
|
|
299
|
+
// file generated by openapi-typescript
|
|
300
|
+
"rules": {
|
|
301
|
+
"tsdoc/syntax": [0],
|
|
302
|
+
"@typescript-eslint/no-redundant-type-constituents": [0]
|
|
303
|
+
}
|
|
296
304
|
}
|
|
297
305
|
],
|
|
298
306
|
"rules": {
|
|
@@ -1166,7 +1174,8 @@ const [
|
|
|
1166
1174
|
configOverride,
|
|
1167
1175
|
playwrightOverride,
|
|
1168
1176
|
_storybookOverride,
|
|
1169
|
-
jsxOverride
|
|
1177
|
+
jsxOverride,
|
|
1178
|
+
openapiOverride
|
|
1170
1179
|
] = overrides;
|
|
1171
1180
|
const index = [
|
|
1172
1181
|
deepMerge(common, {
|
|
@@ -1210,6 +1219,10 @@ const index = [
|
|
|
1210
1219
|
},
|
|
1211
1220
|
files: jsxOverride.files,
|
|
1212
1221
|
rules: jsxOverride.rules
|
|
1222
|
+
}, { arrayExtend: true }),
|
|
1223
|
+
deepMerge(common, {
|
|
1224
|
+
files: openapiOverride.files,
|
|
1225
|
+
rules: openapiOverride.rules
|
|
1213
1226
|
}, { arrayExtend: true })
|
|
1214
1227
|
];
|
|
1215
1228
|
export {
|
package/dist/index.json
CHANGED
package/package.json
CHANGED