mirror of
https://github.com/captn3m0/google-sre-ebook.git
synced 2024-09-07 04:46:29 +00:00
22 lines
582 B
INI
22 lines
582 B
INI
|
;
|
||
|
; Global Editor Config for Adaptive Labbers
|
||
|
;
|
||
|
; This is an ini style configuration. See http://editorconfig.org/ for more information on this file.
|
||
|
;
|
||
|
; Top level editor config.
|
||
|
root = true
|
||
|
; Always use Unix style new lines with new line ending on every file and trim whitespace
|
||
|
[*]
|
||
|
end_of_line = lf
|
||
|
insert_final_newline = true
|
||
|
trim_trailing_whitespace = true
|
||
|
indent_style = space
|
||
|
; Python: PEP8 defines 4 spaces for indentation
|
||
|
[*.py]
|
||
|
indent_style = space
|
||
|
indent_size = 4
|
||
|
; Salt state files, YAML format, 2 spaces
|
||
|
[*.sls, *.yaml, *.yml, *.rb]
|
||
|
indent_style = space
|
||
|
indent_size = 2
|