From 6b78680875d9e721d46e4f3d34047c6a3fbd2f33 Mon Sep 17 00:00:00 2001 From: DMRobertson Date: Mon, 1 Nov 2021 11:36:20 +0000 Subject: deploy: ece84f2c450d986e54acc80971225fb02f4e1d05 --- develop/code_style.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'develop/code_style.html') diff --git a/develop/code_style.html b/develop/code_style.html index e9cc99d016..675ec76395 100644 --- a/develop/code_style.html +++ b/develop/code_style.html @@ -189,7 +189,7 @@ quickly and automatically check for formatting (and sometimes logical) errors in code.

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