Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .codespellignore

This file was deleted.

2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 160
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ repos:
hooks:
- id: nbqa-flake8
args:
- --ignore=E501,E712,W291,F632,E203,F821,F403,W391,F401
- --ignore=E501,E712,W291,F632,E203,F821,F403,W391,F401,VNE001,VNE002,VNE003,N816,FNE008
- --exclude=.*,__init__.py
name: nbqa-flake8
description: Run 'flake8' on a Jupyter Notebook
Expand All @@ -115,7 +115,7 @@ repos:
hooks:
- id: flake8
args:
- --ignore=E501,E712,W291,F632,E203,F821,F403,W391,F401
- --ignore=E501,E712,W291,F632,E203,F821,F403,W391,F401,VNE001,VNE002,VNE003,N816,FNE008
- --exclude=.*,__init__.py
additional_dependencies:
- flake8-variables-names
Expand Down
2 changes: 2 additions & 0 deletions .pydocstyle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pydocstyle]
ignore = D100
34 changes: 34 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[MASTER]
ignore-patterns=^\..*,__init__\.py

[MESSAGES CONTROL]
disable=
C0103,
C0114,
C0115,
C0116,
C0117,
C0200,
C0208,
C0325,
C3002,
E0102,
E0601,
E1121,
E1137,
R0124,
R0133,
R1703,
R1705,
R1716,
R1719,
R1724,
R0801,
R1732,
R1734,
W0106,
W0130,
W0601,
W0621,
W0622,
W1514
Loading
Loading