@zinkawaii/eslint-config 0.1.8 → 0.1.9

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/dist/index.cjs CHANGED
@@ -37,6 +37,7 @@ var patch_default = prefixary({
37
37
  "antfu/curly": "off",
38
38
  "antfu/if-newline": "off",
39
39
  "antfu/no-import-dist": "off",
40
+ "antfu/no-top-level-await": "off",
40
41
  "antfu/top-level-function": "off",
41
42
  "node/prefer-global/process": "off",
42
43
  "perfectionist/sort-imports": ["warn", {
@@ -206,9 +207,7 @@ var standard_default = prefixary({
206
207
  "no-lonely-if": "warn",
207
208
  "no-loop-func": "warn",
208
209
  "no-magic-numbers": "off",
209
- "no-multi-assign": ["warn", {
210
- ignoreNonDeclaration: true
211
- }],
210
+ "no-multi-assign": "off",
212
211
  "no-multi-str": "warn",
213
212
  "no-negated-condition": "off",
214
213
  "no-nested-ternary": "off",
package/dist/index.js CHANGED
@@ -12,6 +12,7 @@ var patch_default = prefixary({
12
12
  "antfu/curly": "off",
13
13
  "antfu/if-newline": "off",
14
14
  "antfu/no-import-dist": "off",
15
+ "antfu/no-top-level-await": "off",
15
16
  "antfu/top-level-function": "off",
16
17
  "node/prefer-global/process": "off",
17
18
  "perfectionist/sort-imports": ["warn", {
@@ -181,9 +182,7 @@ var standard_default = prefixary({
181
182
  "no-lonely-if": "warn",
182
183
  "no-loop-func": "warn",
183
184
  "no-magic-numbers": "off",
184
- "no-multi-assign": ["warn", {
185
- ignoreNonDeclaration: true
186
- }],
185
+ "no-multi-assign": "off",
187
186
  "no-multi-str": "warn",
188
187
  "no-negated-condition": "off",
189
188
  "no-nested-ternary": "off",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zinkawaii/eslint-config",
3
3
  "type": "module",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
5
5
  "author": "KazariEX",
6
6
  "license": "MIT",
7
7
  "repository": "KazariEX/eslint-config",
@@ -19,13 +19,15 @@
19
19
  "index.d.ts"
20
20
  ],
21
21
  "devDependencies": {
22
- "@antfu/eslint-config": "^3.11.0",
23
- "eslint": "^9.15.0",
22
+ "@antfu/eslint-config": "^3.11.2",
23
+ "bumpp": "^9.8.1",
24
+ "eslint": "^9.16.0",
24
25
  "tsup": "^8.3.5"
25
26
  },
26
27
  "scripts": {
27
28
  "build": "tsup",
28
29
  "watch": "tsup --watch",
30
+ "release": "bumpp --no-push -c \"release: v%s\"",
29
31
  "eslint": "eslint ."
30
32
  }
31
33
  }