@kikiutils/eslint-config 0.7.1 → 0.7.3

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.mjs +12 -2
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -24,6 +24,10 @@ function createConfig(environment = 'node', options) {
24
24
  'error',
25
25
  1,
26
26
  ],
27
+ 'node/prefer-global/process': [
28
+ 'error',
29
+ 'always',
30
+ ],
27
31
  'perfectionist/sort-array-includes': [
28
32
  'error',
29
33
  commonPerfectionistSortOptions,
@@ -102,11 +106,17 @@ function createConfig(environment = 'node', options) {
102
106
  ],
103
107
  'style/array-bracket-newline': [
104
108
  'error',
105
- { minItems: 2 },
109
+ {
110
+ minItems: 2,
111
+ multiline: true,
112
+ },
106
113
  ],
107
114
  'style/array-element-newline': [
108
115
  'error',
109
- { minItems: 2 },
116
+ {
117
+ minItems: 2,
118
+ multiline: true,
119
+ },
110
120
  ],
111
121
  'style/arrow-parens': [
112
122
  'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kikiutils/eslint-config",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "description": "Using antfu/eslint-config as a base for eslint-config, slightly modified the settings and added additional plugins, mainly for my own use.",
5
5
  "author": "kiki-kanri",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@antfu/eslint-config": "^3.12.0",
35
- "eslint": "^9.16.0",
35
+ "eslint": "^9.17.0",
36
36
  "eslint-plugin-tailwindcss": "^3.17.5"
37
37
  },
38
38
  "devDependencies": {
@@ -40,7 +40,7 @@
40
40
  "@kikiutils/tsconfigs": "^3.0.2",
41
41
  "esbuild": "^0.24.0",
42
42
  "eslint-flat-config-utils": "^0.4.0",
43
- "nodemon": "^3.1.7",
43
+ "nodemon": "^3.1.9",
44
44
  "ts-project-builder": "^3.3.3"
45
45
  }
46
46
  }