editorcheck update: restrict to shell scripts and C programs for now, and removing the maximum line length check for now.

This commit is contained in:
Maarten van Gompel 2020-11-20 18:13:31 +01:00
parent 7fb7cd70f3
commit 10f813b1eb

View file

@ -4,11 +4,11 @@
root = true root = true
# Unix-style newlines with a newline ending every file # Unix-style newlines with a newline ending every file
[*] [*.{sh|c}]
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true
indent_style = tab indent_style = tab
max_line_length = 80 #max_line_length = 80
spaces_around_operators = true spaces_around_operators = true
charset = utf-8 charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true