@zinkawaii/eslint-config 0.4.4 → 0.4.5
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/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -517,10 +517,10 @@ const zin = (options = {}, ...userConfigs) => {
|
|
|
517
517
|
...vue.overrides
|
|
518
518
|
}
|
|
519
519
|
}
|
|
520
|
-
}, javascript_default, misc_default, stylistic_default, configFused,
|
|
521
|
-
files: ["
|
|
520
|
+
}, javascript_default, misc_default, stylistic_default, configFused, {
|
|
521
|
+
files: ["**/*.vue"],
|
|
522
522
|
rules: { "style/indent": "off" }
|
|
523
|
-
});
|
|
523
|
+
}, ...userConfigs);
|
|
524
524
|
};
|
|
525
525
|
//#endregion
|
|
526
526
|
export { zin as default, zin };
|