eslint-config-tamia 9.3.0 → 9.3.1

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,10 @@
1
1
  {
2
2
  "name": "eslint-config-tamia",
3
3
  "description": "Tâmia ESLint config",
4
- "version": "9.3.0",
4
+ "version": "9.3.1",
5
+ "engines": {
6
+ "node": ">=22"
7
+ },
5
8
  "type": "module",
6
9
  "main": "index.mjs",
7
10
  "exports": {
package/rules/unicorn.mjs CHANGED
@@ -10,9 +10,6 @@ export default [
10
10
  // This breaks a lot of code, like `typeof window` to detect that we're in
11
11
  // the browser
12
12
  'unicorn/prefer-global-this': 'off',
13
- // Prefer reading a JSON file as a buffer. Buffers can be passed directly to
14
- // JSON.parse()
15
- 'unicorn/prefer-json-parse-buffer': 'error',
16
13
  // Set.has() might be faster than Array.includes() but who cares if the array
17
14
  // is short. Set is less readable
18
15
  'unicorn/prefer-set-has': 'off',