.editorconfig 483 Bytes
Newer Older
Nikita Titov's avatar
Nikita Titov committed
1
2
3
4
5
6
7
8
9
root = true

[*]
charset=utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2

10
[*.{py,sh,js,ps1}]
Nikita Titov's avatar
Nikita Titov committed
11
indent_size = 4
12
13
14
line_length = 120
skip = external_libs
known_first_party = lightgbm
Nikita Titov's avatar
Nikita Titov committed
15
16
17
18
19
20
21
22

# Placeholder files
[{*.gitkeep,__init__.py}]
insert_final_newline = none

# Tabs matter for Makefile and .gitmodules
[{makefile*,Makefile*,*.mk,*.mak,*.makefile,*.Makefile,GNUmakefile,BSDmakefile,make.bat,Makevars*,*.gitmodules}]
indent_style = tab