@phaicom/eslint-config 0.2.3 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +0 -2
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -14,8 +14,6 @@ var base = {
14
14
  // unicorn rule customizations
15
15
  "unicorn/prevent-abbreviations": "off",
16
16
  "unicorn/consistent-function-scoping": "off",
17
- // jsonc rule customizations
18
- "jsonc/sort-keys": "off",
19
17
  // node customizations
20
18
  "node/prefer-global/process": "off"
21
19
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@phaicom/eslint-config",
3
3
  "type": "module",
4
- "version": "0.2.3",
4
+ "version": "0.2.4",
5
5
  "description": "Phaicom's config based on @antfu/eslint-config",
6
6
  "author": "Reawpai Chunsoi <reawpai.chunsoi@gmail.com> (https://github.com/phaicom)",
7
7
  "license": "MIT",
@@ -9,9 +9,6 @@
9
9
  "keywords": [
10
10
  "eslint-config"
11
11
  ],
12
- "engines": {
13
- "node": ">=20"
14
- },
15
12
  "exports": {
16
13
  ".": "./dist/index.js"
17
14
  },
@@ -20,6 +17,9 @@
20
17
  "files": [
21
18
  "dist"
22
19
  ],
20
+ "engines": {
21
+ "node": ">=20"
22
+ },
23
23
  "peerDependencies": {
24
24
  "eslint-plugin-readable-tailwind": ">=2.0.0-beta.1"
25
25
  },