From 6b78680875d9e721d46e4f3d34047c6a3fbd2f33 Mon Sep 17 00:00:00 2001
From: DMRobertson
The necessary tools are detailed below.
First install them with:
-pip install -e ".[lint,mypy]"
+pip install -e ".[lint,mypy]"
-
@@ -199,7 +199,7 @@ as an opinionated code formatter, ensuring all comitted code is
properly formatted.
Have black
auto-format your code (it shouldn't change any
functionality) with:
-black . --exclude="\.tox|build|env"
+black . --exclude="\.tox|build|env"
-
@@ -207,7 +207,7 @@ functionality) with:
flake8
is a code checking tool. We require code to pass flake8
before being merged into the codebase.
Check all application and test code with:
-flake8 synapse tests
+flake8 synapse tests
-
@@ -215,7 +215,7 @@ before being merged into the codebase.
isort
ensures imports are nicely formatted, and can suggest and
auto-fix issues such as double-importing.
Auto-fix imports with:
-isort -rc synapse tests
+isort -rc synapse tests
-rc
means to recursively search the given directories.
@@ -247,12 +247,12 @@ in the sphinx documentation.
Prefer to import classes and functions rather than packages or
modules.
Example:
-
from synapse.types import UserID
+from synapse.types import UserID
...
user_id = UserID(local, server)
is preferred over:
-from synapse import types
+from synapse import types
...
user_id = types.UserID(local, server)
@@ -333,7 +333,7 @@ will be if no sub-options are enabled).
Example:
-## Frobnication ##
+## Frobnication ##
# The frobnicator will ensure that all requests are fully frobnicated.
# To enable it, uncomment the following.
--
cgit 1.5.1