eslint-config-tamia 9.4.2 → 9.4.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-config-tamia",
3
3
  "description": "Tâmia ESLint config",
4
- "version": "9.4.2",
4
+ "version": "9.4.4",
5
5
  "engines": {
6
6
  "node": ">=22"
7
7
  },
package/rules/unicorn.mjs CHANGED
@@ -15,6 +15,10 @@ export default [
15
15
  'unicorn/prefer-set-has': 'off',
16
16
  // Ternaries often reduce readability
17
17
  'unicorn/prefer-ternary': 'off',
18
+ // Avoid conflicts with Prettier
19
+ 'unicorn/escape-case': ['warn', 'lowercase'],
20
+ // Avoid conflicts with Prettier
21
+ 'unicorn/number-literal-case': ['warn', 'lowercase'],
18
22
  },
19
23
  },
20
24
  ];
package/rules/vitest.mjs CHANGED
@@ -25,8 +25,8 @@ export default [
25
25
  'vitest/padding-around-after-each-blocks': 'warn',
26
26
  'vitest/padding-around-before-all-blocks': 'warn',
27
27
  'vitest/padding-around-before-each-blocks': 'warn',
28
- 'vitest/padding-around-describe-blocks)': 'warn',
29
- 'vitest/padding-around-test-blocks)': 'warn',
28
+ 'vitest/padding-around-describe-blocks': 'warn',
29
+ 'vitest/padding-around-test-blocks': 'warn',
30
30
  },
31
31
  },
32
32
  ];