Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-22pyproject: add configuration for autopep8Campbell Barton
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
2022-02-10GNUmakefile: move editor settings to .editorconfigCampbell Barton
Remove inline vim/emacs editor configuration, add makefile to editorconfig instead.
2019-04-17editorconfig: correct indent sizeCampbell Barton
2019-04-17editorconfig: update for new clang-format configCampbell Barton
2018-06-19editorconfig: correct C/C++ using spaceCampbell Barton
2018-06-18editorconfig: add rstCampbell Barton
2018-06-18editorconfig: add line length, glslCampbell Barton
2018-06-18Add .editorconfig fileCampbell Barton
This is a fairly well supported file-type configuration for indentation and trailing space stripping. See editorconfig.org for details.