@andrewt03/eslint-typescript-rules 0.0.58 → 0.0.59

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.
package/dist/index.js CHANGED
@@ -256,7 +256,18 @@ var TYPESCRIPT_ESLINT_CONFIG_RULES = {
256
256
  selector: ["variable", "classProperty", "parameter"],
257
257
  types: ["boolean"],
258
258
  format: ["PascalCase"],
259
- prefix: ["is", "should", "has", "can", "will", "needs"]
259
+ prefix: [
260
+ "is",
261
+ "should",
262
+ "has",
263
+ "can",
264
+ "could",
265
+ "needs",
266
+ "may",
267
+ "must",
268
+ "does",
269
+ "will"
270
+ ]
260
271
  }
261
272
  ]
262
273
  };
package/dist/index.mjs CHANGED
@@ -222,7 +222,18 @@ var TYPESCRIPT_ESLINT_CONFIG_RULES = {
222
222
  selector: ["variable", "classProperty", "parameter"],
223
223
  types: ["boolean"],
224
224
  format: ["PascalCase"],
225
- prefix: ["is", "should", "has", "can", "will", "needs"]
225
+ prefix: [
226
+ "is",
227
+ "should",
228
+ "has",
229
+ "can",
230
+ "could",
231
+ "needs",
232
+ "may",
233
+ "must",
234
+ "does",
235
+ "will"
236
+ ]
226
237
  }
227
238
  ]
228
239
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrewt03/eslint-typescript-rules",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "description": "Recommended ESLint Rules for general TypeScript, Node.js/Express.js, Angular, and React.js Projects",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",