-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02221fd
commit fba1f76
Showing
1 changed file
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,32 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{v,vsh,mod}] | ||
[*.{v,js,css}] | ||
indent_style = tab | ||
|
||
[*.rst] | ||
[*.{bat,cmd}] | ||
# BAT/CMD ~ DOS/Win requires BAT/CMD files to have CRLF EOLNs | ||
end_of_line = crlf | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 3 | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
# lines that are too long will trigger an error in cmd/tools/vcheck-md.v | ||
# run v check-md [folder/file] to test markdown files | ||
# the longest normal line is specified with this constant: | ||
# `too_long_line_length_other = 100` | ||
max_line_length = 100 | ||
|
||
[*.{txt,out}] | ||
insert_final_newline = false | ||
|
||
[Makefile] | ||
[{Makefile,GNUmakefile}] | ||
indent_style = tab |