diff --git a/.editorconfig b/.editorconfig index 9f0ac5e3d4..f812b7c8fa 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,10 +4,8 @@ # This is the terminal .editorconfig in this repository. root = true -[*] +# You can't change this to * without the `checkfmt` make target failing due to many +# files that don't adhere to this. +[*.yml] insert_final_newline = true trim_trailing_whitespace = true - -[Makefile] -indent_style = tab -indent_size = 4 diff --git a/pkger/parser_test.go b/pkger/parser_test.go index 0af42d6313..77a9383b29 100644 --- a/pkger/parser_test.go +++ b/pkger/parser_test.go @@ -2161,7 +2161,7 @@ spec: require.True(t, ok) assert.Equal(t, "xy", props.GetType()) assert.Equal(t, true, props.ShadeBelow) - assert.Equal(t, "auto", props.HoverDimension) + assert.Equal(t, "y", props.HoverDimension) assert.Equal(t, "xy chart note", props.Note) assert.True(t, props.ShowNoteWhenEmpty) assert.Equal(t, "stacked", props.Position)