Skip to content

Commit 4e8a0d9

Browse files
cclaussgithub-actions
and
github-actions
authored
CONTRIBUTING.md: Update flake8 command (#2124)
* CONTRIBUTING.md: Update flake8 command * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 4a2d457 commit 4e8a0d9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ We want your work to be readable by others; therefore, we encourage you to note
6868
black .
6969
```
7070

71-
- All submissions will need to pass the test __flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics__ before they will be accepted so if possible, try this test locally on your Python file(s) before submitting your pull request.
71+
- All submissions will need to pass the test __flake8 . --ignore=E203,W503 --max-line-length=88__ before they will be accepted so if possible, try this test locally on your Python file(s) before submitting your pull request.
7272

7373
```bash
7474
pip3 install flake8 # only required the first time
75-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
75+
flake8 . --ignore=E203,W503 --max-line-length=88 --show-source
7676
```
7777

7878
- Original code submission require docstrings or comments to describe your work.

DIRECTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@
395395
* [Zellers Congruence](https://github.com/TheAlgorithms/Python/blob/master/maths/zellers_congruence.py)
396396

397397
## Matrix
398+
* [Count Islands In Matrix](https://github.com/TheAlgorithms/Python/blob/master/matrix/count_islands_in_matrix.py)
398399
* [Matrix Class](https://github.com/TheAlgorithms/Python/blob/master/matrix/matrix_class.py)
399400
* [Matrix Operation](https://github.com/TheAlgorithms/Python/blob/master/matrix/matrix_operation.py)
400401
* [Nth Fibonacci Using Matrix Exponentiation](https://github.com/TheAlgorithms/Python/blob/master/matrix/nth_fibonacci_using_matrix_exponentiation.py)

0 commit comments

Comments
 (0)