Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More advances on sphinx and mistune upgrade #66

Open
wants to merge 15 commits into
base: v2
Choose a base branch
from
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,6 @@ ghostdriver.log

# nox
.nox/*

venv*
.idea/*
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/m2r2.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 74 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 20 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,43 @@ repos:
language: system
types: [python]
args: [--max-line-length=88]
exclude: (docs|tests)/*
exclude: |
(?x)^(
docs*|
test*
)$
- id: isort
name: isort
entry: isort
language: system
types: [python]
args: [--multi-line=3,--trailing-comma,--force-grid-wrap=0,--use-parentheses,--line-width=88]
exclude: (docs|tests)/*
exclude: |
(?x)^(
docs*|
test*
)$
- id: black
name: black
entry: black
language: system
types: [python]
args: []
language_version: python3.7
exclude: (docs|tests)/*
exclude: |
(?x)^(
docs*|
test*
)$
- id: mypy
name: mypy
entry: mypy
language: system
types: [python]
exclude: (tests|docs)/*
exclude: |
(?x)^(
docs*|
test*
)$
- id: pylint
name: pylint
entry: pylint
Expand Down
Loading