mirror of
https://github.com/netbox-community/netbox-acls.git
synced 2026-06-01 18:58:58 +02:00
abb8cb45ff
Introduces .editorconfig file to standardize formatting across editors. Defines charset, line endings, indentation (spaces/tabs), and file-specific rules for HTML, YAML, LICENSE, and Makefiles.
24 lines
314 B
INI
24 lines
314 B
INI
# https://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
indent_size = 4
|
|
indent_style = space
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
[{*.htm,*.html}]
|
|
indent_size = 2
|
|
|
|
[{*.yml,*.yaml}]
|
|
indent_size = 2
|
|
|
|
[LICENSE]
|
|
insert_final_newline = false
|
|
|
|
[Makefile]
|
|
indent_style = tab
|