@fewangsit/eslint-config-vue-code-standard 1.0.9 → 1.0.11
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// index.js
|
|
2
2
|
import { fixupPluginRules } from "@eslint/compat";
|
|
3
3
|
import js from "@eslint/js";
|
|
4
|
+
import { defineConfig } from "eslint/config";
|
|
4
5
|
import css from "eslint-plugin-css";
|
|
5
6
|
import cypress from "eslint-plugin-cypress";
|
|
6
7
|
import importPlugin from "eslint-plugin-import";
|
|
@@ -194,7 +195,7 @@ var vue_default = {
|
|
|
194
195
|
|
|
195
196
|
// index.js
|
|
196
197
|
var patchedImportPlugin = fixupPluginRules(importPlugin);
|
|
197
|
-
var index_default =
|
|
198
|
+
var index_default = defineConfig(
|
|
198
199
|
// Base configs
|
|
199
200
|
js.configs.recommended,
|
|
200
201
|
...tseslint.configs.recommended,
|
package/package.json
CHANGED