@lqbach/eslint-config 0.3.1 โ†’ 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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
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
+
5
+
6
+ ### Bug Fixes ๐Ÿ›
7
+
8
+ * prettier formatting ([5322091](https://github.com/lqbach/eslint-prettier-config/commit/53220914a5abc6a9d072a671e9b78274a08478b8))
9
+
3
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)
4
11
 
5
12
 
@@ -9,29 +16,25 @@
9
16
 
10
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)
11
18
 
12
-
13
19
  ### Features ๐Ÿš€
14
20
 
15
- * add jsonc eslint config ([f07b3c3](https://github.com/lqbach/eslint-prettier-config/commit/f07b3c359d12e2e5564aa388750e4d738c6afab3))
16
- * add perfectionist sorting for eslint ([b2d8205](https://github.com/lqbach/eslint-prettier-config/commit/b2d8205314b5fe72675afd87a960864018e10782))
17
- * add yaml config ([f02ae29](https://github.com/lqbach/eslint-prettier-config/commit/f02ae29b2c4ed47d9cb50c81e860ce87bb6d7897))
18
- * prettier sorted imports ([c12ede2](https://github.com/lqbach/eslint-prettier-config/commit/c12ede2941863b767810495ee8b5c3cc6691e430))
19
-
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))
20
25
 
21
26
  ### Chores ๐Ÿงน
22
27
 
23
- * add husky pre-commit ([db5cdfa](https://github.com/lqbach/eslint-prettier-config/commit/db5cdfa5ce036cebbdbf1edd23885aa1719c27cd))
24
- * add licensing to package ([e18f4f3](https://github.com/lqbach/eslint-prettier-config/commit/e18f4f36cf44fac1da5906094f2dc9ca2ea2f2d9))
25
-
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))
26
30
 
27
31
  ### Miscellaneous
28
32
 
29
- * update the configuration architecture of configs ([8e77c83](https://github.com/lqbach/eslint-prettier-config/commit/8e77c838251dd60d9d682d0cb8208dae4679c6f3))
30
-
33
+ - update the configuration architecture of configs ([8e77c83](https://github.com/lqbach/eslint-prettier-config/commit/8e77c838251dd60d9d682d0cb8208dae4679c6f3))
31
34
 
32
35
  ### Documentation ๐Ÿ“
33
36
 
34
- * align badges ([8e7c4e1](https://github.com/lqbach/eslint-prettier-config/commit/8e7c4e1bcbd7ac7321ae02b21ce0ccf19e70a471))
37
+ - align badges ([8e7c4e1](https://github.com/lqbach/eslint-prettier-config/commit/8e7c4e1bcbd7ac7321ae02b21ce0ccf19e70a471))
35
38
 
36
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)
37
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
@@ -428,6 +428,9 @@ function config(params = {}) {
428
428
  sourceType: "module"
429
429
  }
430
430
  },
431
+ plugins: {
432
+ vue: default10
433
+ },
431
434
  rules: {
432
435
  ...default10.configs["base"].rules,
433
436
  ...default10.configs["vue3-essential"].rules,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lqbach/eslint-config",
3
3
  "type": "module",
4
- "version": "0.3.1",
4
+ "version": "0.3.2",
5
5
  "description": "lqbach's Personal Eslint Config",
6
6
  "private": false,
7
7
  "license": "MIT",
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,