@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 CHANGED
@@ -10,3 +10,6 @@ indent_size = 4
10
10
 
11
11
  [Makefile]
12
12
  indent_style = tab
13
+
14
+ [*.{yml,yaml}]
15
+ indent_size = 2
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
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/mise-en-place",
3
- "version": "2.4.9",
3
+ "version": "2.4.10",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",