@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 +7 -0
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
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
package/package.json
CHANGED
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,
|