@alexlit/config-eslint 72.5.1 → 72.5.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/index.js CHANGED
@@ -214,7 +214,17 @@ module.exports = defineConfig({
214
214
 
215
215
  quotes: ['error', 'single'],
216
216
  'require-await': 'off',
217
- 'sort-imports': 'off',
217
+
218
+ 'sort-imports': [
219
+ 'warn',
220
+ {
221
+ allowSeparatedGroups: true,
222
+ ignoreCase: true,
223
+ ignoreDeclarationSort: true,
224
+ ignoreMemberSort: false,
225
+ memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
226
+ },
227
+ ],
218
228
 
219
229
  'sort-keys': [
220
230
  'warn',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "72.5.1",
3
+ "version": "72.5.2",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -56,7 +56,7 @@ module.exports = {
56
56
  '@typescript-eslint/naming-convention': [
57
57
  'error',
58
58
  {
59
- format: ['camelCase'],
59
+ format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
60
60
  selector: 'default',
61
61
  },
62
62
  {