godot/editor/debugger
Rémi Verschelde cd4e46ee65 SCons: Format buildsystem files with psf/black
Configured for a max line length of 120 characters.

psf/black is very opinionated and purposely doesn't leave much room for
configuration. The output is mostly OK so that should be fine for us,
but some things worth noting:

- Manually wrapped strings will be reflowed, so by using a line length
  of 120 for the sake of preserving readability for our long command
  calls, it also means that some manually wrapped strings are back on
  the same line and should be manually merged again.

- Code generators using string concatenation extensively look awful,
  since black puts each operand on a single line. We need to refactor
  these generators to use more pythonic string formatting, for which
  many options are available (`%`, `format` or f-strings).

- CI checks and a pre-commit hook will be added to ensure that future
  buildsystem changes are well-formatted.
2020-03-30 09:05:53 +02:00
..
editor_debugger_inspector.cpp Update editor debugger to new remote debugger. 2020-03-08 12:36:39 +01:00
editor_debugger_inspector.h Huge Debugger/EditorDebugger refactor. 2020-02-21 11:12:03 +01:00
editor_debugger_node.cpp Popups are now windows also (broken!) 2020-03-26 15:49:42 +01:00
editor_debugger_node.h Threaded networking for editor debugger. 2020-03-08 12:16:09 +01:00
editor_debugger_server.cpp Update editor debugger to new remote debugger. 2020-03-08 12:36:39 +01:00
editor_debugger_server.h Update editor debugger to new remote debugger. 2020-03-08 12:36:39 +01:00
editor_debugger_tree.cpp Popups are now windows also (broken!) 2020-03-26 15:49:42 +01:00
editor_debugger_tree.h Huge Debugger/EditorDebugger refactor. 2020-02-21 11:12:03 +01:00
editor_network_profiler.cpp Popups are now windows also (broken!) 2020-03-26 15:49:42 +01:00
editor_network_profiler.h Update editor debugger to new remote debugger. 2020-03-08 12:36:39 +01:00
editor_profiler.cpp Popups are now windows also (broken!) 2020-03-26 15:49:42 +01:00
editor_profiler.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
editor_visual_profiler.cpp Popups are now windows also (broken!) 2020-03-26 15:49:42 +01:00
editor_visual_profiler.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
script_editor_debugger.cpp Rename more 2D and 3D nodes to follow convention 2020-03-27 16:26:34 +01:00
script_editor_debugger.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
SCsub SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00