@lqbach/eslint-config 0.3.1 โ 0.3.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.
- package/CHANGELOG.md +22 -12
- package/dist/index.cjs +4 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.3](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.3.2...eslint-config-v0.3.3) (2023-11-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes ๐
|
|
7
|
+
|
|
8
|
+
* add processor api to vue plugin ([9883a01](https://github.com/lqbach/eslint-prettier-config/commit/9883a01ff504e67ea3fad1803cb9afb8d04b0455))
|
|
9
|
+
|
|
10
|
+
## [0.3.2](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.3.1...eslint-config-v0.3.2) (2023-11-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes ๐
|
|
14
|
+
|
|
15
|
+
* prettier formatting ([5322091](https://github.com/lqbach/eslint-prettier-config/commit/53220914a5abc6a9d072a671e9b78274a08478b8))
|
|
16
|
+
|
|
3
17
|
## [0.3.1](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.3.0...eslint-config-v0.3.1) (2023-11-22)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -9,29 +23,25 @@
|
|
|
9
23
|
|
|
10
24
|
## [0.3.0](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.2.2...eslint-config-v0.3.0) (2023-11-21)
|
|
11
25
|
|
|
12
|
-
|
|
13
26
|
### Features ๐
|
|
14
27
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
28
|
+
- add jsonc eslint config ([f07b3c3](https://github.com/lqbach/eslint-prettier-config/commit/f07b3c359d12e2e5564aa388750e4d738c6afab3))
|
|
29
|
+
- add perfectionist sorting for eslint ([b2d8205](https://github.com/lqbach/eslint-prettier-config/commit/b2d8205314b5fe72675afd87a960864018e10782))
|
|
30
|
+
- add yaml config ([f02ae29](https://github.com/lqbach/eslint-prettier-config/commit/f02ae29b2c4ed47d9cb50c81e860ce87bb6d7897))
|
|
31
|
+
- prettier sorted imports ([c12ede2](https://github.com/lqbach/eslint-prettier-config/commit/c12ede2941863b767810495ee8b5c3cc6691e430))
|
|
20
32
|
|
|
21
33
|
### Chores ๐งน
|
|
22
34
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
35
|
+
- add husky pre-commit ([db5cdfa](https://github.com/lqbach/eslint-prettier-config/commit/db5cdfa5ce036cebbdbf1edd23885aa1719c27cd))
|
|
36
|
+
- add licensing to package ([e18f4f3](https://github.com/lqbach/eslint-prettier-config/commit/e18f4f36cf44fac1da5906094f2dc9ca2ea2f2d9))
|
|
26
37
|
|
|
27
38
|
### Miscellaneous
|
|
28
39
|
|
|
29
|
-
|
|
30
|
-
|
|
40
|
+
- update the configuration architecture of configs ([8e77c83](https://github.com/lqbach/eslint-prettier-config/commit/8e77c838251dd60d9d682d0cb8208dae4679c6f3))
|
|
31
41
|
|
|
32
42
|
### Documentation ๐
|
|
33
43
|
|
|
34
|
-
|
|
44
|
+
- align badges ([8e7c4e1](https://github.com/lqbach/eslint-prettier-config/commit/8e7c4e1bcbd7ac7321ae02b21ce0ccf19e70a471))
|
|
35
45
|
|
|
36
46
|
## [0.2.2](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.2.1...eslint-config-v0.2.2) (2023-11-14)
|
|
37
47
|
|
package/dist/index.cjs
CHANGED
|
@@ -439,6 +439,10 @@ function config(params = {}) {
|
|
|
439
439
|
sourceType: "module"
|
|
440
440
|
}
|
|
441
441
|
},
|
|
442
|
+
plugins: {
|
|
443
|
+
vue: import_eslint_plugin_vue.default
|
|
444
|
+
},
|
|
445
|
+
processor: import_eslint_plugin_vue.default.processors[".vue"],
|
|
442
446
|
rules: {
|
|
443
447
|
...import_eslint_plugin_vue.default.configs["base"].rules,
|
|
444
448
|
...import_eslint_plugin_vue.default.configs["vue3-essential"].rules,
|
package/dist/index.js
CHANGED
|
@@ -428,6 +428,10 @@ function config(params = {}) {
|
|
|
428
428
|
sourceType: "module"
|
|
429
429
|
}
|
|
430
430
|
},
|
|
431
|
+
plugins: {
|
|
432
|
+
vue: default10
|
|
433
|
+
},
|
|
434
|
+
processor: default10.processors[".vue"],
|
|
431
435
|
rules: {
|
|
432
436
|
...default10.configs["base"].rules,
|
|
433
437
|
...default10.configs["vue3-essential"].rules,
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -126,6 +126,10 @@ export default function config(params: ConfigParams = {}): Array<ConfigObject> {
|
|
|
126
126
|
sourceType: "module",
|
|
127
127
|
},
|
|
128
128
|
},
|
|
129
|
+
plugins: {
|
|
130
|
+
vue: pluginVue,
|
|
131
|
+
},
|
|
132
|
+
processor: pluginVue.processors[".vue"],
|
|
129
133
|
rules: {
|
|
130
134
|
...pluginVue.configs["base"].rules,
|
|
131
135
|
...pluginVue.configs["vue3-essential"].rules,
|