My solutions for https://adventofcode.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
441 B
20 lines
441 B
default_stages: |
|
- merge-commit |
|
- push |
|
|
|
repos: |
|
- repo: https://github.com/pre-commit/pre-commit-hooks |
|
rev: v4.3.0 |
|
hooks: |
|
- id: end-of-file-fixer |
|
stages: [merge-commit, push] |
|
- id: trailing-whitespace |
|
stages: [merge-commit, push] |
|
- id: check-merge-conflict |
|
- repo: local |
|
hooks: |
|
- id: lint |
|
name: lint |
|
entry: task lint:fix -- |
|
language: system |
|
files: ""
|
|
|