Update release notes

This commit is contained in:
Veronica Berglyd Olsen
2022-11-28 17:12:48 +01:00
parent 8390615489
commit 35ec8e0f12
4 changed files with 176 additions and 12 deletions
+2 -2
View File
@@ -98,14 +98,14 @@ The `setup.cfg` file in the root of this project has the following settings for
matches the above code style:
```conf
[flake8]
ignore = E221,E226,E228,E241
ignore = E133,E221,E226,E228,E241,W503
max-line-length = 99
exclude = docs/*
```
The command line equivalent, with reporting, is:
```bash
flake8 . --count --ignore E221,E226,E228,E241 --max-line-length=99 --show-source --statistics
flake8 . --count --ignore E133,E221,E226,E228,E241,W503 --max-line-length=99 --show-source --statistics
```
Passing this check is required before contributions are merged. This is checked automatically when