eslint-config-isaacscript 3.1.1 → 3.2.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.
Files changed (3) hide show
  1. package/jsdoc.js +3 -1
  2. package/mod.js +10 -0
  3. package/package.json +1 -1
package/jsdoc.js CHANGED
@@ -55,12 +55,14 @@ module.exports = {
55
55
  // https://typedoc.org/guides/doccomments/
56
56
  "category",
57
57
  "hidden",
58
- "notExported",
58
+ "notExported", // From: typedoc-plugin-not-exported
59
+ "rename", // From: typedoc-plugin-rename
59
60
 
60
61
  // Ignore tags used in TypeScriptToLua:
61
62
  // https://typescripttolua.github.io/docs/advanced/compiler-annotations
62
63
  "noResolution",
63
64
  "noSelf",
65
+ "noSelfInFile",
64
66
 
65
67
  // Ignore tags used in ts-json-schema-generator:
66
68
  // https://github.com/vega/ts-json-schema-generator
package/mod.js CHANGED
@@ -131,6 +131,16 @@ module.exports = {
131
131
  */
132
132
  "isaacscript/no-invalid-default-map": "warn",
133
133
 
134
+ /**
135
+ * Documentation:
136
+ * https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-plugin-isaacscript/docs/rules/no-throw.md
137
+ *
138
+ * Not defined in the parent configs.
139
+ *
140
+ * The `throw` keyword should never be used in Isaac mods.
141
+ */
142
+ "isaacscript/no-throw": "warn",
143
+
134
144
  /**
135
145
  * Documentation:
136
146
  * https://eslint.org/docs/latest/rules/no-bitwise
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "A sharable ESLint config for TypeScript and IsaacScript projects.",
5
5
  "keywords": [
6
6
  "eslint",