@lqbach/eslint-config 0.3.2 → 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 CHANGED
@@ -1,5 +1,12 @@
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
+
3
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)
4
11
 
5
12
 
package/dist/index.cjs CHANGED
@@ -442,6 +442,7 @@ function config(params = {}) {
442
442
  plugins: {
443
443
  vue: import_eslint_plugin_vue.default
444
444
  },
445
+ processor: import_eslint_plugin_vue.default.processors[".vue"],
445
446
  rules: {
446
447
  ...import_eslint_plugin_vue.default.configs["base"].rules,
447
448
  ...import_eslint_plugin_vue.default.configs["vue3-essential"].rules,
package/dist/index.js CHANGED
@@ -431,6 +431,7 @@ function config(params = {}) {
431
431
  plugins: {
432
432
  vue: default10
433
433
  },
434
+ processor: default10.processors[".vue"],
434
435
  rules: {
435
436
  ...default10.configs["base"].rules,
436
437
  ...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.2",
4
+ "version": "0.3.3",
5
5
  "description": "lqbach's Personal Eslint Config",
6
6
  "private": false,
7
7
  "license": "MIT",
package/src/index.ts CHANGED
@@ -129,6 +129,7 @@ export default function config(params: ConfigParams = {}): Array<ConfigObject> {
129
129
  plugins: {
130
130
  vue: pluginVue,
131
131
  },
132
+ processor: pluginVue.processors[".vue"],
132
133
  rules: {
133
134
  ...pluginVue.configs["base"].rules,
134
135
  ...pluginVue.configs["vue3-essential"].rules,