eslint-config-isaacscript 4.13.0 → 4.14.0

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.
@@ -243,6 +243,8 @@ const config = {
243
243
  files: ["*.js", "*.cjs", "*.mjs", "*.jsx"],
244
244
  rules: {
245
245
  "jsdoc/no-types": "off",
246
+ "jsdoc/require-param-description": "off",
247
+ "jsdoc/require-returns-description": "off",
246
248
  },
247
249
  },
248
250
  ],
@@ -171,8 +171,8 @@ const SUPPORTED_RULES = {
171
171
  },
172
172
  },
173
173
  {
174
- // We disable this for renamed properties, this this is a valid use-case.
175
- // e.g. `const collectibleUsedToShowFlight = CollectibleType.FATE;`
174
+ // We disable this for renamed properties, since code like the following should be valid:
175
+ // `const someSpecificMyEnum = MyEnum.Value1;`
176
176
  enforceForRenamedProperties: false,
177
177
  },
178
178
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "4.13.0",
3
+ "version": "4.14.0",
4
4
  "description": "A sharable ESLint config for TypeScript and IsaacScript projects.",
5
5
  "keywords": [
6
6
  "eslint",