@danielwaltz/eslint-config 3.2.2 → 3.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.
Files changed (3) hide show
  1. package/dist/index.mjs +16 -3
  2. package/package.json +17 -22
  3. package/CHANGELOG.md +0 -603
package/dist/index.mjs CHANGED
@@ -2,20 +2,26 @@ import { baseline, hasVue, sxzz } from "@sxzz/eslint-config";
2
2
  import e18e from "@e18e/eslint-plugin";
3
3
  import erasableSyntaxOnlyPlugin from "eslint-plugin-erasable-syntax-only";
4
4
  import vueA11yPlugin from "eslint-plugin-vuejs-accessibility";
5
- import { composer as composer$1, defineFlatConfig } from "eslint-flat-config-utils";
5
+ import { composer, defineFlatConfig } from "eslint-flat-config-utils";
6
6
  export * from "@sxzz/eslint-config";
7
+ //#region src/configs/e18e.ts
7
8
  function e18eConfigs() {
8
9
  return [{
9
10
  ...e18e.configs.recommended,
10
11
  name: "danielwaltz/e18e"
11
12
  }];
12
13
  }
14
+ //#endregion
15
+ //#region src/configs/typescript.ts
13
16
  function typescriptConfigs() {
14
17
  return [{
15
18
  name: "danielwaltz/erasable-syntax-only",
16
19
  ...erasableSyntaxOnlyPlugin.configs.recommended
17
20
  }];
18
21
  }
22
+ //#endregion
23
+ //#region src/configs/unicorn.ts
24
+ const FILENAME_CASE_IGNORE_REGEXES = [/^[A-Z]+\..*$/, /import_map\.json/];
19
25
  function unicornConfigs() {
20
26
  return [{
21
27
  name: "danielwaltz/unicorn",
@@ -25,10 +31,12 @@ function unicornConfigs() {
25
31
  kebabCase: true,
26
32
  pascalCase: true
27
33
  },
28
- ignore: [/^[A-Z]+\..*$/, /import_map\.json/]
34
+ ignore: FILENAME_CASE_IGNORE_REGEXES
29
35
  }] }
30
36
  }];
31
37
  }
38
+ //#endregion
39
+ //#region src/configs/vue.ts
32
40
  function vueConfigs() {
33
41
  return [
34
42
  ...vueA11yPlugin.configs["flat/recommended"],
@@ -125,9 +133,13 @@ function vueConfigs() {
125
133
  }
126
134
  ];
127
135
  }
136
+ //#endregion
137
+ //#region src/utils.ts
128
138
  function defineFlatConfigs(...configs) {
129
- return composer$1(...configs);
139
+ return composer(...configs);
130
140
  }
141
+ //#endregion
142
+ //#region src/index.ts
131
143
  function danielwaltz(...params) {
132
144
  const composer = defineFlatConfigs();
133
145
  composer.prepend(sxzz(...params));
@@ -137,4 +149,5 @@ function danielwaltz(...params) {
137
149
  if (hasVue()) composer.append(vueConfigs());
138
150
  return composer;
139
151
  }
152
+ //#endregion
140
153
  export { danielwaltz, defineFlatConfig, defineFlatConfigs };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@danielwaltz/eslint-config",
3
3
  "type": "module",
4
- "version": "3.2.2",
5
- "packageManager": "pnpm@10.28.2",
4
+ "version": "3.3.1",
5
+ "packageManager": "pnpm@10.30.3",
6
6
  "author": "Daniel Waltz",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -13,17 +13,10 @@
13
13
  "eslint-config"
14
14
  ],
15
15
  "exports": {
16
- ".": {
17
- "types": "./dist/index.d.mts",
18
- "default": "./dist/index.mjs"
19
- }
16
+ ".": "./dist/index.mjs",
17
+ "./package.json": "./package.json"
20
18
  },
21
- "main": "./dist/index.mjs",
22
- "module": "./dist/index.mjs",
23
- "types": "./dist/index.d.mts",
24
19
  "files": [
25
- "CHANGELOG.md",
26
- "README.md",
27
20
  "dist"
28
21
  ],
29
22
  "publishConfig": {
@@ -32,30 +25,32 @@
32
25
  "registry": "https://registry.npmjs.org/"
33
26
  },
34
27
  "scripts": {
35
- "build": "obuild",
36
- "stub": "obuild --stub",
28
+ "build": "tsdown",
37
29
  "lint": "eslint",
38
- "type-check": "tsc --noEmit",
39
30
  "prepack": "pnpm build",
40
- "test": "pnpm prepack && pnpm lint && pnpm type-check && pnpx publint@latest && pnpx @arethetypeswrong/cli@latest --pack --profile esm-only",
41
- "release": "changelogen --release --push --publish"
31
+ "release": "changelogen --release --push --publish",
32
+ "test": "pnpm prepack && pnpm lint && pnpm type-check && pnpm test:publish",
33
+ "test:attw": "pnpx @arethetypeswrong/cli@latest --pack --profile esm-only",
34
+ "test:publint": "pnpx publint@latest",
35
+ "test:publish": "pnpm test:attw && pnpm test:publint",
36
+ "type-check": "tsc --noEmit"
42
37
  },
43
38
  "peerDependencies": {
44
39
  "eslint": ">=9",
45
40
  "prettier": ">=3"
46
41
  },
47
42
  "dependencies": {
48
- "@e18e/eslint-plugin": "^0.1.4",
49
- "@sxzz/eslint-config": "^7.6.0",
50
- "eslint-flat-config-utils": "^3.0.0",
43
+ "@e18e/eslint-plugin": "^0.2.0",
44
+ "@sxzz/eslint-config": "^7.8.3",
45
+ "eslint-flat-config-utils": "^3.0.1",
51
46
  "eslint-plugin-erasable-syntax-only": "^0.4.0",
52
- "eslint-plugin-vuejs-accessibility": "^2.4.1"
47
+ "eslint-plugin-vuejs-accessibility": "^2.5.0"
53
48
  },
54
49
  "devDependencies": {
55
50
  "@tsconfig/node24": "^24.0.4",
56
- "@types/node": "~24.10.11",
51
+ "@types/node": "~24.10.15",
57
52
  "changelogen": "^0.6.2",
58
- "obuild": "^0.4.22",
53
+ "tsdown": "^0.21.0",
59
54
  "typescript": "~5.9.3"
60
55
  }
61
56
  }
package/CHANGELOG.md DELETED
@@ -1,603 +0,0 @@
1
- # Changelog
2
-
3
-
4
- ## v3.2.2
5
-
6
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.2.1...v3.2.2)
7
-
8
- ### 🩹 Fixes
9
-
10
- - Ensure vue baseline config name and files are not overwritten ([79d16cf](https://github.com/danielwaltz/eslint-config/commit/79d16cf))
11
-
12
- ### ❤️ Contributors
13
-
14
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
15
-
16
- ## v3.2.1
17
-
18
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.2.0...v3.2.1)
19
-
20
- ### 🩹 Fixes
21
-
22
- - Only spread rules for vue baseline config ([91fe524](https://github.com/danielwaltz/eslint-config/commit/91fe524))
23
-
24
- ### ❤️ Contributors
25
-
26
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
27
-
28
- ## v3.2.0
29
-
30
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.1.0...v3.2.0)
31
-
32
- ### 🚀 Enhancements
33
-
34
- - Update configs ([c997c0c](https://github.com/danielwaltz/eslint-config/commit/c997c0c))
35
-
36
- ### 🩹 Fixes
37
-
38
- - Allow top level await in vue sfcs ([b443be9](https://github.com/danielwaltz/eslint-config/commit/b443be9))
39
-
40
- ### ❤️ Contributors
41
-
42
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
43
-
44
- ## v3.1.0
45
-
46
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.0.1...v3.1.0)
47
-
48
- ### 🚀 Enhancements
49
-
50
- - Add new directives rule ([389eac9](https://github.com/danielwaltz/eslint-config/commit/389eac9))
51
-
52
- ### 🏡 Chore
53
-
54
- - Update tsconfig version ([f20749d](https://github.com/danielwaltz/eslint-config/commit/f20749d))
55
- - Update deps ([f518fb3](https://github.com/danielwaltz/eslint-config/commit/f518fb3))
56
-
57
- ### ❤️ Contributors
58
-
59
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
60
-
61
- ## v3.0.1
62
-
63
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v3.0.0...v3.0.1)
64
-
65
- ### 🩹 Fixes
66
-
67
- - Update sxzz config ([8e93e37](https://github.com/danielwaltz/eslint-config/commit/8e93e37))
68
-
69
- ### 🏡 Chore
70
-
71
- - Update node to `v24.13.0` ([49bb5d3](https://github.com/danielwaltz/eslint-config/commit/49bb5d3))
72
-
73
- ### ❤️ Contributors
74
-
75
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
76
-
77
- ## v3.0.0
78
-
79
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.6.2...v3.0.0)
80
-
81
- ### 🚀 Enhancements
82
-
83
- - ⚠️ Replace depend plugin with e18e ([426a99f](https://github.com/danielwaltz/eslint-config/commit/426a99f))
84
-
85
- ### 🩹 Fixes
86
-
87
- - Update sxzz config and deps ([9ecdbe3](https://github.com/danielwaltz/eslint-config/commit/9ecdbe3))
88
-
89
- ### 🏡 Chore
90
-
91
- - Lint fixes ([0e768c2](https://github.com/danielwaltz/eslint-config/commit/0e768c2))
92
-
93
- #### ⚠️ Breaking Changes
94
-
95
- - ⚠️ Replace depend plugin with e18e ([426a99f](https://github.com/danielwaltz/eslint-config/commit/426a99f))
96
-
97
- ### ❤️ Contributors
98
-
99
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
100
-
101
- ## v2.6.2
102
-
103
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.6.1...v2.6.2)
104
-
105
- ### 🩹 Fixes
106
-
107
- - Update name of define model in macros order rule ([9c813c8](https://github.com/danielwaltz/eslint-config/commit/9c813c8))
108
-
109
- ### ❤️ Contributors
110
-
111
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
112
-
113
- ## v2.6.1
114
-
115
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.6.0...v2.6.1)
116
-
117
- ### 🩹 Fixes
118
-
119
- - Update sxzz config and deps ([9b6b61d](https://github.com/danielwaltz/eslint-config/commit/9b6b61d))
120
-
121
- ### 🏡 Chore
122
-
123
- - Add publish config ([4276d14](https://github.com/danielwaltz/eslint-config/commit/4276d14))
124
-
125
- ### 🤖 CI
126
-
127
- - Update step versions ([5c4d759](https://github.com/danielwaltz/eslint-config/commit/5c4d759))
128
-
129
- ### ❤️ Contributors
130
-
131
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
132
-
133
- ## v2.6.0
134
-
135
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.5.1...v2.6.0)
136
-
137
- ### 🚀 Enhancements
138
-
139
- - Add vue no negated condition rules ([152903f](https://github.com/danielwaltz/eslint-config/commit/152903f))
140
-
141
- ### 🏡 Chore
142
-
143
- - Update deps ([2634219](https://github.com/danielwaltz/eslint-config/commit/2634219))
144
-
145
- ### 🤖 CI
146
-
147
- - Release via github actions ([4a9a17f](https://github.com/danielwaltz/eslint-config/commit/4a9a17f))
148
-
149
- ### ❤️ Contributors
150
-
151
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
152
-
153
- ## v2.5.1
154
-
155
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.5.0...v2.5.1)
156
-
157
- ### 🩹 Fixes
158
-
159
- - Update sxzz config ([c03a79e](https://github.com/danielwaltz/eslint-config/commit/c03a79e))
160
-
161
- ### 🏡 Chore
162
-
163
- - Refresh editorconfig ([9b2046c](https://github.com/danielwaltz/eslint-config/commit/9b2046c))
164
- - Update node to `v22.17.0` ([9057a95](https://github.com/danielwaltz/eslint-config/commit/9057a95))
165
-
166
- ### ❤️ Contributors
167
-
168
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
169
-
170
- ## v2.5.0
171
-
172
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.4.0...v2.5.0)
173
-
174
- ### 🚀 Enhancements
175
-
176
- - Add eslint plugin depend ([1dc8d39](https://github.com/danielwaltz/eslint-config/commit/1dc8d39))
177
-
178
- ### 🩹 Fixes
179
-
180
- - Update sxzz config ([5289ac5](https://github.com/danielwaltz/eslint-config/commit/5289ac5))
181
-
182
- ### ❤️ Contributors
183
-
184
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
185
-
186
- ## v2.4.0
187
-
188
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.3.1...v2.4.0)
189
-
190
- ### 🚀 Enhancements
191
-
192
- - Update sxzz config ([cb76e3e](https://github.com/danielwaltz/eslint-config/commit/cb76e3e))
193
-
194
- ### 🏡 Chore
195
-
196
- - Approve local builds ([78a36c4](https://github.com/danielwaltz/eslint-config/commit/78a36c4))
197
- - Migrate from `unbuild` to `obuild` ([a765b63](https://github.com/danielwaltz/eslint-config/commit/a765b63))
198
-
199
- ### ❤️ Contributors
200
-
201
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
202
-
203
- ## v2.3.1
204
-
205
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.3.0...v2.3.1)
206
-
207
- ### 🩹 Fixes
208
-
209
- - Disable problematic vue rules ([b98be06](https://github.com/danielwaltz/eslint-config/commit/b98be06))
210
-
211
- ### 🏡 Chore
212
-
213
- - Bump lockfile ([020240d](https://github.com/danielwaltz/eslint-config/commit/020240d))
214
-
215
- ### ❤️ Contributors
216
-
217
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
218
-
219
- ## v2.3.0
220
-
221
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.2...v2.3.0)
222
-
223
- ### 🚀 Enhancements
224
-
225
- - Update sxzz config and add new vue props destructuring rule ([ba14479](https://github.com/danielwaltz/eslint-config/commit/ba14479))
226
-
227
- ### 🏡 Chore
228
-
229
- - Update node to `v22.15.0` ([a24a01d](https://github.com/danielwaltz/eslint-config/commit/a24a01d))
230
-
231
- ### ❤️ Contributors
232
-
233
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
234
-
235
- ## v2.2.2
236
-
237
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.1...v2.2.2)
238
-
239
- ### 🩹 Fixes
240
-
241
- - Update default accessibility component names ([6309f09](https://github.com/danielwaltz/eslint-config/commit/6309f09))
242
- - Update sxzz config ([fb3b808](https://github.com/danielwaltz/eslint-config/commit/fb3b808))
243
-
244
- ### ❤️ Contributors
245
-
246
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
247
-
248
- ## v2.2.1
249
-
250
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.2.0...v2.2.1)
251
-
252
- ### 🩹 Fixes
253
-
254
- - Configure vue accessibility rules to check for nuxt components ([22afe2b](https://github.com/danielwaltz/eslint-config/commit/22afe2b))
255
-
256
- ### ❤️ Contributors
257
-
258
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
259
-
260
- ## v2.2.0
261
-
262
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.1.0...v2.2.0)
263
-
264
- ### 🚀 Enhancements
265
-
266
- - Update vue on handler style ([7924eb2](https://github.com/danielwaltz/eslint-config/commit/7924eb2))
267
- - Add vue accessibility config ([965489e](https://github.com/danielwaltz/eslint-config/commit/965489e))
268
-
269
- ### 🏡 Chore
270
-
271
- - Update deps ([4169d8e](https://github.com/danielwaltz/eslint-config/commit/4169d8e))
272
-
273
- ### ❤️ Contributors
274
-
275
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
276
-
277
- ## v2.1.0
278
-
279
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.0.1...v2.1.0)
280
-
281
- ### 🚀 Enhancements
282
-
283
- - Update sxzz config ([ee07f95](https://github.com/danielwaltz/eslint-config/commit/ee07f95))
284
-
285
- ### ❤️ Contributors
286
-
287
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
288
-
289
- ## v2.0.1
290
-
291
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v2.0.0...v2.0.1)
292
-
293
- ### 🩹 Fixes
294
-
295
- - Update deprecated vue rule ([0a81e29](https://github.com/danielwaltz/eslint-config/commit/0a81e29))
296
-
297
- ### ❤️ Contributors
298
-
299
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
300
-
301
- ## v2.0.0
302
-
303
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v1.2.0...v2.0.0)
304
-
305
- ### 🚀 Enhancements
306
-
307
- - ⚠️ Update sxzz config ([ca86c04](https://github.com/danielwaltz/eslint-config/commit/ca86c04))
308
- - Add new rule to vue config ([fbbb2d8](https://github.com/danielwaltz/eslint-config/commit/fbbb2d8))
309
-
310
- #### ⚠️ Breaking Changes
311
-
312
- - ⚠️ Update sxzz config ([ca86c04](https://github.com/danielwaltz/eslint-config/commit/ca86c04))
313
-
314
- ### ❤️ Contributors
315
-
316
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
317
-
318
- ## v1.2.0
319
-
320
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.2.0...v1.2.0)
321
-
322
- ### 🚀 Enhancements
323
-
324
- - Add and enable erasable syntax only plugin and config ([f515da7](https://github.com/danielwaltz/eslint-config/commit/f515da7))
325
-
326
- ### ❤️ Contributors
327
-
328
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
329
-
330
- ## v0.2.0
331
-
332
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.1.2...v0.2.0)
333
-
334
- ### 🚀 Enhancements
335
-
336
- - ⚠️ Forward options to sxzz config ([a76b765](https://github.com/danielwaltz/eslint-config/commit/a76b765))
337
-
338
- ### 🏡 Chore
339
-
340
- - Refresh lockfile ([1e25978](https://github.com/danielwaltz/eslint-config/commit/1e25978))
341
-
342
- #### ⚠️ Breaking Changes
343
-
344
- - ⚠️ Forward options to sxzz config ([a76b765](https://github.com/danielwaltz/eslint-config/commit/a76b765))
345
-
346
- ### ❤️ Contributors
347
-
348
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
349
-
350
- ## v0.1.2
351
-
352
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.1.1...v0.1.2)
353
-
354
- ### 🚀 Enhancements
355
-
356
- - Await sxzz config ([24e910a](https://github.com/danielwaltz/eslint-config/commit/24e910a))
357
- - Update sxzz config ([5682511](https://github.com/danielwaltz/eslint-config/commit/5682511))
358
-
359
- ### 🩹 Fixes
360
-
361
- - Strip `@types/eslint` ([6e77ce8](https://github.com/danielwaltz/eslint-config/commit/6e77ce8))
362
-
363
- ### 🏡 Chore
364
-
365
- - Bump node version ([8361f8c](https://github.com/danielwaltz/eslint-config/commit/8361f8c))
366
- - Update dev deps ([5671593](https://github.com/danielwaltz/eslint-config/commit/5671593))
367
-
368
- ### ❤️ Contributors
369
-
370
- - Daniel Waltz ([@danielwaltz](https://github.com/danielwaltz))
371
-
372
- ## v0.1.1
373
-
374
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.1.0...v0.1.1)
375
-
376
- ### 🚀 Enhancements
377
-
378
- - Update sxzz config ([edfb1a8](https://github.com/danielwaltz/eslint-config/commit/edfb1a8))
379
-
380
- ### 🏡 Chore
381
-
382
- - Update exports defs ([ebf7d0e](https://github.com/danielwaltz/eslint-config/commit/ebf7d0e))
383
-
384
- ### ❤️ Contributors
385
-
386
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
387
-
388
- ## v0.1.0
389
-
390
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.14...v0.1.0)
391
-
392
- ### 🚀 Enhancements
393
-
394
- - Add exports from eslint flat config utils ([44a7316](https://github.com/danielwaltz/eslint-config/commit/44a7316))
395
- - ⚠️ Use latest version of `@sxzz/eslint-config` ([48bc7aa](https://github.com/danielwaltz/eslint-config/commit/48bc7aa))
396
-
397
- #### ⚠️ Breaking Changes
398
-
399
- - ⚠️ Use latest version of `@sxzz/eslint-config` ([48bc7aa](https://github.com/danielwaltz/eslint-config/commit/48bc7aa))
400
-
401
- ### ❤️ Contributors
402
-
403
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
404
-
405
- ## v0.0.14
406
-
407
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.13...v0.0.14)
408
-
409
- ### 🚀 Enhancements
410
-
411
- - Use const type params for generics ([a9e8b05](https://github.com/danielwaltz/eslint-config/commit/a9e8b05))
412
-
413
- ### 🏡 Chore
414
-
415
- - Update readme usage examples ([001ec31](https://github.com/danielwaltz/eslint-config/commit/001ec31))
416
- - Add npm version badge to readme ([cac09a1](https://github.com/danielwaltz/eslint-config/commit/cac09a1))
417
-
418
- ### ❤️ Contributors
419
-
420
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
421
-
422
- ## v0.0.13
423
-
424
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.12...v0.0.13)
425
-
426
- ### 🚀 Enhancements
427
-
428
- - Support configs as generics ([29fda64](https://github.com/danielwaltz/eslint-config/commit/29fda64))
429
-
430
- ### ❤️ Contributors
431
-
432
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
433
-
434
- ## v0.0.12
435
-
436
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.11...v0.0.12)
437
-
438
- ### 🏡 Chore
439
-
440
- - Update flat config utils ([70f1bee](https://github.com/danielwaltz/eslint-config/commit/70f1bee))
441
-
442
- ### ❤️ Contributors
443
-
444
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
445
-
446
- ## v0.0.11
447
-
448
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.10...v0.0.11)
449
-
450
- ### 🏡 Chore
451
-
452
- - Update deps ([7af6630](https://github.com/danielwaltz/eslint-config/commit/7af6630))
453
-
454
- ### ❤️ Contributors
455
-
456
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
457
-
458
- ## v0.0.10
459
-
460
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.9...v0.0.10)
461
-
462
- ### 🏡 Chore
463
-
464
- - Update deps ([db98334](https://github.com/danielwaltz/eslint-config/commit/db98334))
465
-
466
- ### ❤️ Contributors
467
-
468
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
469
-
470
- ## v0.0.9
471
-
472
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.8...v0.0.9)
473
-
474
- ### 📖 Documentation
475
-
476
- - Add prettier to install deps ([be84faa](https://github.com/danielwaltz/eslint-config/commit/be84faa))
477
-
478
- ### 🏡 Chore
479
-
480
- - Enable ts for eslint config locally ([7f616a3](https://github.com/danielwaltz/eslint-config/commit/7f616a3))
481
- - Update deps ([e0d0544](https://github.com/danielwaltz/eslint-config/commit/e0d0544))
482
-
483
- ### ❤️ Contributors
484
-
485
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
486
-
487
- ## v0.0.8
488
-
489
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.7...v0.0.8)
490
-
491
- ### 🩹 Fixes
492
-
493
- - Prepend sxzz config to ensure it is the base ([c874acf](https://github.com/danielwaltz/eslint-config/commit/c874acf))
494
-
495
- ### ❤️ Contributors
496
-
497
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
498
-
499
- ## v0.0.7
500
-
501
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.6...v0.0.7)
502
-
503
- ### 🚀 Enhancements
504
-
505
- - Support camel case file names ([ea01564](https://github.com/danielwaltz/eslint-config/commit/ea01564))
506
-
507
- ### 📖 Documentation
508
-
509
- - Include info about sxzz config ([8025acd](https://github.com/danielwaltz/eslint-config/commit/8025acd))
510
-
511
- ### ❤️ Contributors
512
-
513
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
514
-
515
- ## v0.0.6
516
-
517
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.5...v0.0.6)
518
-
519
- ### 🚀 Enhancements
520
-
521
- - Extend from sxzz eslint config ([2192f1e](https://github.com/danielwaltz/eslint-config/commit/2192f1e))
522
-
523
- ### 📖 Documentation
524
-
525
- - Add eslint and prettier to installation command ([8b42bf0](https://github.com/danielwaltz/eslint-config/commit/8b42bf0))
526
-
527
- ### 🏡 Chore
528
-
529
- - Add editorconfig ([2503c53](https://github.com/danielwaltz/eslint-config/commit/2503c53))
530
- - Use package name import for project eslint config ([6756f9f](https://github.com/danielwaltz/eslint-config/commit/6756f9f))
531
- - Update type assertions ([93159bc](https://github.com/danielwaltz/eslint-config/commit/93159bc))
532
-
533
- ### ❤️ Contributors
534
-
535
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
536
-
537
- ## v0.0.5
538
-
539
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.4...v0.0.5)
540
-
541
- ### 🚀 Enhancements
542
-
543
- - Export individual config collections ([585dfa1](https://github.com/danielwaltz/eslint-config/commit/585dfa1))
544
-
545
- ### ❤️ Contributors
546
-
547
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
548
-
549
- ## v0.0.4
550
-
551
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.3...v0.0.4)
552
-
553
- ### 🩹 Fixes
554
-
555
- - Make main config fn synchronous ([aa1682c](https://github.com/danielwaltz/eslint-config/commit/aa1682c))
556
-
557
- ### ❤️ Contributors
558
-
559
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
560
-
561
- ## v0.0.3
562
-
563
- [compare changes](https://github.com/danielwaltz/eslint-config/compare/v0.0.2...v0.0.3)
564
-
565
- ### 🚀 Enhancements
566
-
567
- - Add import configs ([3990a67](https://github.com/danielwaltz/eslint-config/commit/3990a67))
568
-
569
- ### 🩹 Fixes
570
-
571
- - Use warn level for prettier rule ([ce9e60c](https://github.com/danielwaltz/eslint-config/commit/ce9e60c))
572
-
573
- ### 📖 Documentation
574
-
575
- - Add readme ([3dce66a](https://github.com/danielwaltz/eslint-config/commit/3dce66a))
576
-
577
- ### 🏡 Chore
578
-
579
- - Include readme and changelog in dist ([1c29ead](https://github.com/danielwaltz/eslint-config/commit/1c29ead))
580
- - Split test and release scripts ([84b0646](https://github.com/danielwaltz/eslint-config/commit/84b0646))
581
-
582
- ### ❤️ Contributors
583
-
584
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
585
-
586
- ## v0.0.2
587
-
588
-
589
- ### 🚀 Enhancements
590
-
591
- - Initial config ([2307e38](https://github.com/danielwaltz/eslint-config/commit/2307e38))
592
- - Enable typescript and javascript plugins using recommended rules ([f5a3113](https://github.com/danielwaltz/eslint-config/commit/f5a3113))
593
-
594
- ### 🏡 Chore
595
-
596
- - Init ([590fe61](https://github.com/danielwaltz/eslint-config/commit/590fe61))
597
- - Update config names ([9a857da](https://github.com/danielwaltz/eslint-config/commit/9a857da))
598
- - Update release script ([30cf611](https://github.com/danielwaltz/eslint-config/commit/30cf611))
599
-
600
- ### ❤️ Contributors
601
-
602
- - Daniel Waltz ([@danielwaltz](http://github.com/danielwaltz))
603
-