1 # SPDX-License-Identifier: GPL-2.0-or-later
4 # Configuration for `autopep8`, allowing the command: autopep8 .
5 # to reformat all source files.
7 # NOTE: the settings defined here map directly to command line arguments
8 # which will override these settings when passed in to autopep8.
13 # Info: Use `isinstance()` instead of comparing types directly.
14 # Why disable? Changes code logic, in rare cases we want to compare exact types.
16 # Info: Fix bare except.
17 # Why disable? Disruptive, leave our exceptions alone.
19 # Info: Fix module level import not at top of file.
20 # Why disable? Re-ordering imports is disruptive and breaks some scripts
21 # that need to check if a module has already been loaded in the case of reloading.
23 # Info: Fix various deprecated code (via lib2to3)
24 # Why disable? Does nothing besides incorrectly adding a duplicate import,
25 # could be reported as a bug except this is likely to be removed soon, see:
26 # https://github.com/python/cpython/issues/84540.
30 # Use aggressive as many useful edits are disabled unless it's enabled.
31 # Any edits which are overly disruptive or risky can be removed in the `ignore` list.
35 # - `./extern/` because it's maintained separately.
36 # - `./tools/svn_rev_map/` contains data-files which are slow to re-format and don't benefit from formatting.
37 # - `./scripts/addons*` because it is an external repository.
38 # which can contain their own configuration and be handled separately.
39 # - `./scripts/modules/rna_manual_reference.py` because it's a generated data-file.
42 scripts/addons_core/*,
43 scripts/modules/rna_manual_reference.py,
44 tools/svn_rev_map/sha1_to_rev.py,
45 tools/svn_rev_map/rev_to_sha1.py,
48 # Omit settings such as `jobs`, `in_place` & `recursive` as they can cause editor utilities that auto-format on save
49 # to fail if the STDIN/STDOUT is used for formatting (which isn't compatible with these options).
51 # Black shouldn't be used as a formatter. But if it's accidentally
52 # used, it certainly shouldn't change all the quote marks around
53 # strings. This simply makes such a mistake easier to recover from.
55 skip-string-normalization = true