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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,QAAQ,CAAC;;AA4FnC,wBA2C4B"}
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
@@ -698,6 +698,19 @@
698
698
  2
699
699
  ]
700
700
  }
701
+ },
702
+ {
703
+ "files": [
704
+ "openapi.d.ts"
705
+ ],
706
+ "rules": {
707
+ "tsdoc/syntax": [
708
+ 0
709
+ ],
710
+ "@typescript-eslint/no-redundant-type-constituents": [
711
+ 0
712
+ ]
713
+ }
701
714
  }
702
715
  ],
703
716
  "rules": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-silverwind",
3
- "version": "100.1.0",
3
+ "version": "100.1.2",
4
4
  "description": "Exhaustive ESLint configuration",
5
5
  "author": "silverwind <me@silverwind.io>",
6
6
  "repository": "silverwind/eslint-config-silverwind",