eslint-config-isaacscript 1.0.72 → 1.0.73

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/jsdoc.js +15 -15
  2. package/package.json +1 -1
package/jsdoc.js CHANGED
@@ -9,7 +9,7 @@ module.exports = {
9
9
  /**
10
10
  * Instead of using the recommended config, we specifically turn on every rule that is useful.
11
11
  *
12
- * We must specify `context: "any"` for every rule because by default, the JSDoc rules will only
12
+ * We must specify `contexts: "any"` for every rule because by default, the JSDoc rules will only
13
13
  * affect a subset of AST node types.
14
14
  */
15
15
  rules: {
@@ -28,7 +28,7 @@ module.exports = {
28
28
  "jsdoc/check-param-names": [
29
29
  "warn",
30
30
  {
31
- context: "any",
31
+ contexts: "any",
32
32
  },
33
33
  ],
34
34
 
@@ -43,7 +43,7 @@ module.exports = {
43
43
  "jsdoc/check-tag-names": [
44
44
  "warn",
45
45
  {
46
- context: "any",
46
+ contexts: "any",
47
47
  definedTags: [
48
48
  // Used by the TypeScript compiler:
49
49
  // https://www.typescriptlang.org/tsconfig#stripInternal
@@ -72,7 +72,7 @@ module.exports = {
72
72
  "jsdoc/check-values": [
73
73
  "warn",
74
74
  {
75
- context: "any",
75
+ contexts: "any",
76
76
  },
77
77
  ],
78
78
 
@@ -84,7 +84,7 @@ module.exports = {
84
84
  "jsdoc/empty-tags": [
85
85
  "warn",
86
86
  {
87
- context: "any",
87
+ contexts: "any",
88
88
  },
89
89
  ],
90
90
 
@@ -96,7 +96,7 @@ module.exports = {
96
96
  "jsdoc/implements-on-classes": [
97
97
  "warn",
98
98
  {
99
- context: "any",
99
+ contexts: "any",
100
100
  },
101
101
  ],
102
102
 
@@ -119,7 +119,7 @@ module.exports = {
119
119
  "jsdoc/no-types": [
120
120
  "warn",
121
121
  {
122
- context: "any",
122
+ contexts: "any",
123
123
  },
124
124
  ],
125
125
 
@@ -133,7 +133,7 @@ module.exports = {
133
133
  "jsdoc/require-asterisk-prefix": [
134
134
  "warn",
135
135
  {
136
- context: "any",
136
+ contexts: "any",
137
137
  },
138
138
  ],
139
139
 
@@ -153,7 +153,7 @@ module.exports = {
153
153
  "warn",
154
154
  "never",
155
155
  {
156
- context: "any",
156
+ contexts: "any",
157
157
  },
158
158
  ],
159
159
 
@@ -168,7 +168,7 @@ module.exports = {
168
168
  "jsdoc/require-param-description": [
169
169
  "warn",
170
170
  {
171
- context: "any",
171
+ contexts: "any",
172
172
  },
173
173
  ],
174
174
 
@@ -181,7 +181,7 @@ module.exports = {
181
181
  "jsdoc/require-param-name": [
182
182
  "warn",
183
183
  {
184
- context: "any",
184
+ contexts: "any",
185
185
  },
186
186
  ],
187
187
 
@@ -198,7 +198,7 @@ module.exports = {
198
198
  "jsdoc/require-property-description": [
199
199
  "warn",
200
200
  {
201
- context: "any",
201
+ contexts: "any",
202
202
  },
203
203
  ],
204
204
 
@@ -211,7 +211,7 @@ module.exports = {
211
211
  "jsdoc/require-property-name": [
212
212
  "warn",
213
213
  {
214
- context: "any",
214
+ contexts: "any",
215
215
  },
216
216
  ],
217
217
 
@@ -228,7 +228,7 @@ module.exports = {
228
228
  "jsdoc/require-returns-description": [
229
229
  "warn",
230
230
  {
231
- context: "any",
231
+ contexts: "any",
232
232
  },
233
233
  ],
234
234
 
@@ -249,7 +249,7 @@ module.exports = {
249
249
  "jsdoc/tag-lines": [
250
250
  "warn",
251
251
  {
252
- context: "any",
252
+ contexts: "any",
253
253
  },
254
254
  ],
255
255
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "An ESLint config for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",