Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Add pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
muffix committed Nov 30, 2021
1 parent e90ae64 commit fcdcac7
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 5 deletions.
26 changes: 26 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 21.11b1
hooks:
- id: black
name: Black
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort
- repo: https://github.com/markdownlint/markdownlint
rev: v0.11.0
hooks:
- id: markdownlint
name: Markdownlint
description: Run markdownlint on your Markdown files
entry: mdl
language: ruby
files: \.(md|mdown|markdown)$
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# v1.0.3
# Changelog

## v1.0.3

- Increased the frequency of authentication token refreshes
- Added pre-commit hooks config

# v1.0.2
## v1.0.2

- Added support for the `--latest-day` option

# v1.0.1
## v1.0.1

- Fixed a bug where the `--earliest-day` option wasn't optional, but should have been
- Fixed a bug where the `--earliest-day` option wasn't optional,
but should have been

# v1.0.0
## v1.0.0

- Initial release

0 comments on commit fcdcac7

Please sign in to comment.