2019-12-22 02:05:55 +03:00
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
2020-04-05 15:14:19 +03:00
|
|
|
trim_trailing_whitespace = true
|
2019-12-22 02:05:55 +03:00
|
|
|
|
|
|
|
[*.v]
|
|
|
|
indent_style = tab
|
2020-01-11 15:23:47 +03:00
|
|
|
indent_size = 4
|
2020-04-05 15:14:19 +03:00
|
|
|
|
|
|
|
[*.{yml,yaml}]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
2022-01-19 03:23:25 +03:00
|
|
|
# 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
|
2019-12-22 02:05:55 +03:00
|
|
|
|
2020-04-08 16:54:38 +03:00
|
|
|
[*.{txt,out}]
|
2020-04-07 18:52:15 +03:00
|
|
|
insert_final_newline = false
|
|
|
|
|
2021-09-04 14:32:42 +03:00
|
|
|
[{Makefile,GNUmakefile}]
|
2019-12-22 02:05:55 +03:00
|
|
|
indent_style = tab
|