mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-22 20:49:48 +00:00
345de81d06
.editoryconfig: tell editors how to format this setup.cfg: general project setup outside of Python-specific stuff
29 lines
450 B
INI
29 lines
450 B
INI
# THis is an EditorConfig file
|
|
# https://EditorConfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
charset = utf-8
|
|
indent_style = tab
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
|
|
[*.yml]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
|
|
# Tab indentation (no size specified)
|
|
[Makefile]
|
|
indent_style = tab
|