@danielwaltz/eslint-config 3.3.0 → 3.3.2

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