eslint-plugin-crisp 1.1.5 → 1.1.7
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 +1 -5
- package/package.json +1 -1
- package/recommended-vue.js +1 -1
- package/recommended.js +1 -1
package/index.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import fs from "fs";
|
|
2
|
-
|
|
3
1
|
import configRecommended from "./recommended.js";
|
|
4
2
|
import configRecommendedVue from "./recommended-vue.js";
|
|
5
3
|
|
|
@@ -48,9 +46,7 @@ import ruleVuePropsDeclarationMultiline from "./rules/vue-props-declaration-mult
|
|
|
48
46
|
import ruleVuePropsDeclarationOrder from "./rules/vue-props-declaration-order.js";
|
|
49
47
|
import ruleVueRefCase from "./rules/vue-ref-case.js";
|
|
50
48
|
|
|
51
|
-
|
|
52
|
-
fs.readFileSync(new URL("./package.json", import.meta.url), "utf8")
|
|
53
|
-
);
|
|
49
|
+
import projectPackage from "./package.json" assert { type: "json" };
|
|
54
50
|
|
|
55
51
|
const plugin = {
|
|
56
52
|
meta: {
|
package/package.json
CHANGED
package/recommended-vue.js
CHANGED