Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

V2 #20

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open

V2 #20

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
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/NarrativeScience/cookiecutter-python-lib",
"commit": "f31f5912ab949296517c6d65fc666b11926a5cf8",
"commit": "06d791b4e3ac2362c595a9bcf0617f84e546ec3c",
"context": {
"cookiecutter": {
"author_name": "",
Expand Down
17 changes: 17 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,23 @@ repos:
# Need to define stages explicitly since `default_stages` was not being respected
stages: [commit]

- repo: https://github.com/lk16/detect-missing-init
rev: v0.1.4
hooks:
- id: detect-missing-init
args: [--create, --track]

- repo: https://github.com/bgimby-ns/pydocstyle
rev: 305f311b
hooks:
- id: pydocstyle
name: Lint Python docstrings (pydocstyle)
exclude: >
(?x)^(
.*__init__.py$|
.*setup.py$
)$

- repo: local
hooks:
- id: codespell
Expand Down
Loading