eslint-config-decent 4.2.36 → 4.2.37

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/oxlint.cjs CHANGED
@@ -220,14 +220,6 @@ const typescriptCompatRules = {
220
220
  "private-method"
221
221
  ]
222
222
  }
223
- ],
224
- "typescript-compat/naming-convention": [
225
- "error",
226
- {
227
- selector: "enumMember",
228
- format: ["camelCase", "PascalCase", "UPPER_CASE"],
229
- trailingUnderscore: "forbid"
230
- }
231
223
  ]
232
224
  };
233
225
  const importRules = {
package/dist/oxlint.mjs CHANGED
@@ -218,14 +218,6 @@ const typescriptCompatRules = {
218
218
  "private-method"
219
219
  ]
220
220
  }
221
- ],
222
- "typescript-compat/naming-convention": [
223
- "error",
224
- {
225
- selector: "enumMember",
226
- format: ["camelCase", "PascalCase", "UPPER_CASE"],
227
- trailingUnderscore: "forbid"
228
- }
229
221
  ]
230
222
  };
231
223
  const importRules = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-decent",
3
- "version": "4.2.36",
3
+ "version": "4.2.37",
4
4
  "description": "A decent ESLint configuration",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
package/src/oxlint.ts CHANGED
@@ -242,14 +242,6 @@ const typescriptCompatRules: Record<string, DummyRule> = {
242
242
  ],
243
243
  },
244
244
  ],
245
- 'typescript-compat/naming-convention': [
246
- 'error',
247
- {
248
- selector: 'enumMember',
249
- format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
250
- trailingUnderscore: 'forbid',
251
- },
252
- ],
253
245
  };
254
246
 
255
247
  const importRules: Record<string, DummyRule> = {