mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-19 16:22:25 +01:00
27 lines
564 B
INI
27 lines
564 B
INI
# EditorConfig configuration for trezor-suite
|
|
# https://EditorConfig.org
|
|
|
|
# Top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file, utf-8 charset
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
charset = utf-8
|
|
|
|
# Ignore diffs/patches
|
|
[*.{diff,patch}]
|
|
end_of_line = unset
|
|
insert_final_newline = unset
|
|
trim_trailing_whitespace = unset
|
|
|
|
# Use indentation of 2 spaces for all yaml files.
|
|
[*.{yaml,yml}]
|
|
indent_size = 2
|
|
|
|
# Use indentation of 4 spaces for all json files.
|
|
[*.json]
|
|
indent_size = 4
|