@meistrari/mise-en-place 2.4.9 → 2.4.10
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/.editorconfig +3 -0
- package/dist/eslint.mjs +5 -1
- package/package.json +1 -1
package/.editorconfig
CHANGED
package/dist/eslint.mjs
CHANGED
|
@@ -64,7 +64,11 @@ const eslintConfig = antfu(
|
|
|
64
64
|
"jsonc/sort-keys": "off",
|
|
65
65
|
// This rule conflicts with eslint-plugin-diff and report false positives
|
|
66
66
|
// https://github.com/paleite/eslint-plugin-diff/issues/46
|
|
67
|
-
"vue/comment-directive": "off"
|
|
67
|
+
"vue/comment-directive": "off",
|
|
68
|
+
// The default rule sets indent to 4 spaces, following the stylistic.indent setting.
|
|
69
|
+
// However, for YAML files we want to use 2 spaces, because it's the standard for YAML.
|
|
70
|
+
// Also because 4 spaces in YAML files can make files harder to read.
|
|
71
|
+
"yaml/indent": ["error", 2]
|
|
68
72
|
}
|
|
69
73
|
},
|
|
70
74
|
{
|