godot/servers
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
..
arvr SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
audio SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
camera SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
physics_2d SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
physics_3d SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
rendering SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
arvr_server.cpp Renaming of servers for coherency. 2020-03-27 15:21:27 -03:00
arvr_server.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
audio_server.cpp Remove the audio memory allocator, use regular one instead. 2020-03-27 20:36:43 -03:00
audio_server.h Remove the audio memory allocator, use regular one instead. 2020-03-27 20:36:43 -03:00
camera_server.cpp Renaming of servers for coherency. 2020-03-27 15:21:27 -03:00
camera_server.h Style: Set clang-format Standard to Cpp11 2020-03-17 07:36:24 +01:00
display_server.cpp DisplayServer: Fix registration of GetRenderingDriversFunction 2020-03-27 11:07:32 +01:00
display_server.h Renaming of servers for coherency. 2020-03-27 15:21:27 -03:00
navigation_server_2d.cpp More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
navigation_server_2d.h More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
navigation_server_3d.cpp More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
navigation_server_3d.h More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
physics_server_2d.cpp More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
physics_server_2d.h More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
physics_server_3d.cpp More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
physics_server_3d.h More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
register_server_types.cpp More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
register_server_types.h Yay very basic 3D (only white) finally shows. 2020-02-11 11:59:27 +01:00
rendering_server.cpp More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
rendering_server.h More server renames for consistency after #37361 2020-03-28 13:20:48 +01:00
SCsub SCons: Format buildsystem files with psf/black 2020-03-30 09:05:53 +02:00
server_wrap_mt_common.h Reimplement Mutex with C++'s <mutex> 2020-02-26 20:40:10 +01:00