feat: improve formatting output * duration is now in human readable format * list of artists is now capped at 140 chars max chore(docker): upgrade Docker image and lint it chore(spotify): refactor spotify wrapper & function names feat(spotify): add playlist support, add pre-commit checks fix: set right visibility in structs & fields - Cleanup old imports feat: add support for album links - perform little code refactor, create new module spotify Co-authored-by: Davide Polonio <poloniodavide@gmail.com> Reviewed-on: #1
22 lines
614 B
YAML
22 lines
614 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.2.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: check-merge-conflict
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- repo: https://github.com/doublify/pre-commit-rust
|
|
rev: v1.0
|
|
hooks:
|
|
- id: fmt
|
|
args: ['--verbose', '--']
|
|
- id: cargo-check
|
|
- repo: https://github.com/IamTheFij/docker-pre-commit
|
|
rev: v2.0.1
|
|
hooks:
|
|
- id: hadolint
|