@dmitryrechkin/eslint-standard 1.3.1 → 1.3.2

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
@@ -298,7 +298,7 @@ export default function ({
298
298
  format: ['PascalCase'],
299
299
  leadingUnderscore: 'forbid',
300
300
  custom: {
301
- regex: 'Interface$',
301
+ regex: '(^Type[A-Z]|Interface$)',
302
302
  match: true
303
303
  }
304
304
  },
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.3.1",
4
+ "version": "1.3.2",
5
5
  "main": "eslint.config.mjs",
6
6
  "bin": {
7
7
  "eslint-standard": "./src/cli/index.mjs"