@phaicom/eslint-config 0.2.3 → 0.2.5

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 +2 -10
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -8,16 +8,10 @@ var base = {
8
8
  "curly": ["error", "all"],
9
9
  // style rule customizations
10
10
  "style/arrow-parens": ["error", "always"],
11
- "style/brace-style": ["error", "1tbs", { allowSingleLine: true }],
12
- "style/quote-props": "off",
13
11
  "style/function-call-spacing": ["error", "never"],
14
12
  // unicorn rule customizations
15
13
  "unicorn/prevent-abbreviations": "off",
16
- "unicorn/consistent-function-scoping": "off",
17
- // jsonc rule customizations
18
- "jsonc/sort-keys": "off",
19
- // node customizations
20
- "node/prefer-global/process": "off"
14
+ "unicorn/consistent-function-scoping": "off"
21
15
  }
22
16
  };
23
17
  var vue = {
@@ -27,9 +21,7 @@ var vue = {
27
21
  "vue/max-attributes-per-line": ["error", {
28
22
  singleline: { max: 10 },
29
23
  multiline: { max: 1 }
30
- }],
31
- "vue/multi-word-component-names": "warn",
32
- "vue/singleline-html-element-content-newline": "off"
24
+ }]
33
25
  }
34
26
  };
35
27
  var phaicom = { base, vue };
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.5",
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
  },