Skip to content

Commit b989a56

Browse files
Daniel Puscherljharb
Daniel Puscher
authored andcommitted
[meta] fix invalid values in editorconfig
According to editorconfig docs "off" is not a valid value, but "unset" should be used.
1 parent 6badda9 commit b989a56

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.editorconfig

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ indent_style = space
2525
indent_size = 2
2626

2727
[{*.json,Makefile}]
28-
max_line_length = off
28+
max_line_length = unset
2929

3030
[test/{dotdot,resolver,module_dir,multirepo,node_path,pathfilter,precedence}/**/*]
31-
indent_style = off
32-
indent_size = off
33-
max_line_length = off
34-
insert_final_newline = off
31+
indent_style = unset
32+
indent_size = unset
33+
max_line_length = unset
34+
insert_final_newline = unset

0 commit comments

Comments
 (0)