@dmitryrechkin/eslint-standard 1.4.8 → 1.4.9

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/eslint.config.mjs CHANGED
@@ -130,12 +130,16 @@ export default function ({
130
130
  'index-signature',
131
131
  'static-property',
132
132
  'property',
133
+ 'protected-static-property',
133
134
  'protected-property',
135
+ 'private-static-property',
134
136
  'private-property',
135
137
  'constructor',
136
138
  'static-method',
137
139
  'method',
140
+ 'protected-static-method',
138
141
  'protected-method',
142
+ 'private-static-method',
139
143
  'private-method'
140
144
  ]
141
145
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dmitryrechkin/eslint-standard",
3
3
  "description": "This package provides a shared ESLint configuration which includes TypeScript support and a set of specific linting rules designed to ensure high-quality and consistent code style across projects.",
4
- "version": "1.4.8",
4
+ "version": "1.4.9",
5
5
  "main": "eslint.config.mjs",
6
6
  "exports": {
7
7
  ".": "./eslint.config.mjs"