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

WIP: Update to mistune v2 #57

Open
wants to merge 24 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 0 additions & 8 deletions .bumpversion.cfg

This file was deleted.

12 changes: 0 additions & 12 deletions .flake8

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,5 @@ ghostdriver.log

# nox
.nox/*

venv*
85 changes: 44 additions & 41 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,42 +1,45 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: trailing-whitespace
- id: requirements-txt-fixer
- repo: local
hooks:
- id: flake8
name: flake8
entry: flake8
language: system
types: [python]
args: [--max-line-length=88]
exclude: (docs|tests)/*
- 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)/*
- id: black
name: black
entry: black
language: system
types: [python]
args: []
language_version: python3.7
exclude: (docs|tests)/*
- id: mypy
name: mypy
entry: mypy
language: system
types: [python]
exclude: (tests|docs)/*
- id: pylint
name: pylint
entry: pylint
language: system
types: [python]
exclude: (tests|docs)*
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: trailing-whitespace
- id: requirements-txt-fixer
- repo: local
hooks:
- id: isort
name: isort
entry: poetry run isort
language: system
types: [python]
exclude: |
(?x)^(
docs*|
test*
)$
- id: black
name: black
entry: poetry run black
language: system
types: [python]
args: []
exclude: |
(?x)^(
docs*|
test*
)$
- id: mypy
name: mypy
entry: poetry run mypy
language: system
types: [python]
exclude: |
(?x)^(
docs*|
test*
)$
- id: pylint
name: pylint
entry: poetry run pylint
language: system
types: [python]
exclude: (tests|docs)*
12 changes: 0 additions & 12 deletions .pylintrc

This file was deleted.

7 changes: 0 additions & 7 deletions MANIFEST.in

This file was deleted.

Loading
Loading