@lqbach/eslint-config 0.3.0 โ 0.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.
- package/CHANGELOG.md +22 -12
- package/dist/index.cjs +3 -0
- package/dist/index.js +3 -0
- package/package.json +5 -2
- package/src/index.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,30 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.3.
|
|
3
|
+
## [0.3.2](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.3.1...eslint-config-v0.3.2) (2023-11-22)
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
###
|
|
6
|
+
### Bug Fixes ๐
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
* add perfectionist sorting for eslint ([b2d8205](https://github.com/lqbach/eslint-prettier-config/commit/b2d8205314b5fe72675afd87a960864018e10782))
|
|
10
|
-
* add yaml config ([f02ae29](https://github.com/lqbach/eslint-prettier-config/commit/f02ae29b2c4ed47d9cb50c81e860ce87bb6d7897))
|
|
11
|
-
* prettier sorted imports ([c12ede2](https://github.com/lqbach/eslint-prettier-config/commit/c12ede2941863b767810495ee8b5c3cc6691e430))
|
|
8
|
+
* prettier formatting ([5322091](https://github.com/lqbach/eslint-prettier-config/commit/53220914a5abc6a9d072a671e9b78274a08478b8))
|
|
12
9
|
|
|
10
|
+
## [0.3.1](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.3.0...eslint-config-v0.3.1) (2023-11-22)
|
|
13
11
|
|
|
14
|
-
### Chores ๐งน
|
|
15
12
|
|
|
16
|
-
|
|
17
|
-
* add licensing to package ([e18f4f3](https://github.com/lqbach/eslint-prettier-config/commit/e18f4f36cf44fac1da5906094f2dc9ca2ea2f2d9))
|
|
13
|
+
### Bug Fixes ๐
|
|
18
14
|
|
|
15
|
+
* added main export to package ([5fa1fcc](https://github.com/lqbach/eslint-prettier-config/commit/5fa1fccf954a61ae353ac74f66925f18fcb744ec))
|
|
19
16
|
|
|
20
|
-
|
|
17
|
+
## [0.3.0](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.2.2...eslint-config-v0.3.0) (2023-11-21)
|
|
18
|
+
|
|
19
|
+
### Features ๐
|
|
20
|
+
|
|
21
|
+
- add jsonc eslint config ([f07b3c3](https://github.com/lqbach/eslint-prettier-config/commit/f07b3c359d12e2e5564aa388750e4d738c6afab3))
|
|
22
|
+
- add perfectionist sorting for eslint ([b2d8205](https://github.com/lqbach/eslint-prettier-config/commit/b2d8205314b5fe72675afd87a960864018e10782))
|
|
23
|
+
- add yaml config ([f02ae29](https://github.com/lqbach/eslint-prettier-config/commit/f02ae29b2c4ed47d9cb50c81e860ce87bb6d7897))
|
|
24
|
+
- prettier sorted imports ([c12ede2](https://github.com/lqbach/eslint-prettier-config/commit/c12ede2941863b767810495ee8b5c3cc6691e430))
|
|
25
|
+
|
|
26
|
+
### Chores ๐งน
|
|
27
|
+
|
|
28
|
+
- add husky pre-commit ([db5cdfa](https://github.com/lqbach/eslint-prettier-config/commit/db5cdfa5ce036cebbdbf1edd23885aa1719c27cd))
|
|
29
|
+
- add licensing to package ([e18f4f3](https://github.com/lqbach/eslint-prettier-config/commit/e18f4f36cf44fac1da5906094f2dc9ca2ea2f2d9))
|
|
21
30
|
|
|
22
|
-
|
|
31
|
+
### Miscellaneous
|
|
23
32
|
|
|
33
|
+
- update the configuration architecture of configs ([8e77c83](https://github.com/lqbach/eslint-prettier-config/commit/8e77c838251dd60d9d682d0cb8208dae4679c6f3))
|
|
24
34
|
|
|
25
35
|
### Documentation ๐
|
|
26
36
|
|
|
27
|
-
|
|
37
|
+
- align badges ([8e7c4e1](https://github.com/lqbach/eslint-prettier-config/commit/8e7c4e1bcbd7ac7321ae02b21ce0ccf19e70a471))
|
|
28
38
|
|
|
29
39
|
## [0.2.2](https://github.com/lqbach/eslint-prettier-config/compare/eslint-config-v0.2.1...eslint-config-v0.2.2) (2023-11-14)
|
|
30
40
|
|
package/dist/index.cjs
CHANGED
|
@@ -439,6 +439,9 @@ function config(params = {}) {
|
|
|
439
439
|
sourceType: "module"
|
|
440
440
|
}
|
|
441
441
|
},
|
|
442
|
+
plugins: {
|
|
443
|
+
vue: import_eslint_plugin_vue.default
|
|
444
|
+
},
|
|
442
445
|
rules: {
|
|
443
446
|
...import_eslint_plugin_vue.default.configs["base"].rules,
|
|
444
447
|
...import_eslint_plugin_vue.default.configs["vue3-essential"].rules,
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lqbach/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.2",
|
|
5
5
|
"description": "lqbach's Personal Eslint Config",
|
|
6
6
|
"private": false,
|
|
7
7
|
"license": "MIT",
|
|
@@ -11,8 +11,11 @@
|
|
|
11
11
|
"directory": "packages/eslint-config"
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
|
-
"
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
}
|
|
15
17
|
},
|
|
18
|
+
"main": "./dist/index.js",
|
|
16
19
|
"dependencies": {
|
|
17
20
|
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
18
21
|
"@typescript-eslint/parser": "^6.10.0",
|
package/src/index.ts
CHANGED
|
@@ -126,6 +126,9 @@ export default function config(params: ConfigParams = {}): Array<ConfigObject> {
|
|
|
126
126
|
sourceType: "module",
|
|
127
127
|
},
|
|
128
128
|
},
|
|
129
|
+
plugins: {
|
|
130
|
+
vue: pluginVue,
|
|
131
|
+
},
|
|
129
132
|
rules: {
|
|
130
133
|
...pluginVue.configs["base"].rules,
|
|
131
134
|
...pluginVue.configs["vue3-essential"].rules,
|