@10stars/config 9.5.0 → 9.5.1

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.
Files changed (2) hide show
  1. package/.eslintrc.js +1 -0
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -183,6 +183,7 @@ module.exports = {
183
183
  "@typescript-eslint/no-unsafe-assignment": type.ignore,
184
184
  "@typescript-eslint/no-unsafe-member-access": type.ignore,
185
185
  "@typescript-eslint/no-unsafe-return": type.ignore,
186
+ "@typescript-eslint/no-unsafe-enum-comparison": type.ignore, // generated enums would be considered unsafe, so the rule must be turned off
186
187
  "@typescript-eslint/no-non-null-assertion": type.ignore, // sometimes TS incorrectly asserts, so there's a need to override
187
188
  "@typescript-eslint/unbound-method": type.ignore,
188
189
  // other
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@10stars/config",
7
- "version": "9.5.0",
7
+ "version": "9.5.1",
8
8
  "author": "10stars.dev <web@alexandrov.co> (https://alexandrov.co)",
9
9
  "license": "MIT",
10
10
  "module": "./src/index.ts",