@andrewt03/eslint-typescript-rules 0.0.56 → 0.0.57

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
@@ -253,7 +253,7 @@ var TYPESCRIPT_ESLINT_CONFIG_RULES = {
253
253
  "@typescript-eslint/naming-convention": [
254
254
  "error",
255
255
  {
256
- selector: ["variable", "property", "parameter"],
256
+ selector: ["variable", "classProperty", "parameter"],
257
257
  types: ["boolean"],
258
258
  format: ["PascalCase"],
259
259
  prefix: ["is", "should", "has", "can", "will", "needs"]
package/dist/index.mjs CHANGED
@@ -219,7 +219,7 @@ var TYPESCRIPT_ESLINT_CONFIG_RULES = {
219
219
  "@typescript-eslint/naming-convention": [
220
220
  "error",
221
221
  {
222
- selector: ["variable", "property", "parameter"],
222
+ selector: ["variable", "classProperty", "parameter"],
223
223
  types: ["boolean"],
224
224
  format: ["PascalCase"],
225
225
  prefix: ["is", "should", "has", "can", "will", "needs"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrewt03/eslint-typescript-rules",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
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",