forked from blender/blender
Campbell Barton
30acc5f9cd
This adds pyproject.toml, needed to configure defaults for autopep8. The file is auto-discovered in a similar way to .clang-format, other tools could be configured here too. For now just configure autopep8 so this can be enabled in IDE's without causing unexpected edits such as wrapping lines over 80 columns in width. Now autopep8 can be used from the root directory by running: autopep8 . This uses multiple-jobs to run autopep8 over all Python scripts except paths that are explicitly ignored in exclude defined by pyproject.toml. Reviewed By: mont29, brecht, sybren Ref D14686
62 lines
1.1 KiB
INI
62 lines
1.1 KiB
INI
# C/C++
|
|
[*.{c,cc,h,hh,inl,glsl}]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
max_line_length = 99
|
|
|
|
# CMake & Text
|
|
[*.{cmake,txt}]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
max_line_length = 99
|
|
|
|
# Python
|
|
[*.py]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
|
|
# Shell
|
|
[*.sh]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
max_line_length = 99
|
|
|
|
# Tom's Obvious Minimal Language
|
|
[*.toml]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
|
|
# reStructuredText
|
|
[*.rst]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 3
|
|
max_line_length = 120
|
|
|
|
# Makefile
|
|
[{Makefile,GNUmakefile}]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = tab
|
|
indent_size = 4
|
|
max_line_length = 120 |