8e7f8fc26d
* Added .pre-commit-config.yaml file * Initial pass of pre-commit with its default rules and flake8 * Revert "Initial pass of pre-commit with its default rules and flake8" This reverts commit 86d39e964e8122580d675f4639ae2d15b85c02e2. * Made pre-commit only act on code files * Added sql to the pre-commit file pattern * Initial pass of pre-commit
20 lines
442 B
YAML
20 lines
442 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
|
|
files: '\.(py|sh|sql)$'
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.2.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 7.0.0
|
|
hooks:
|
|
- id: flake8
|