summaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-05-11 00:18:36 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-05-11 19:07:47 +0200
commit75b3347d35236ad2ed36febdacfb5e41582aab40 (patch)
tree68c0201e3574b7ab42e11f8bb33e036d1550187f /.pre-commit-config.yaml
parentcfc90a63fa21d7decee9516a73a61368d676babc (diff)
Rename scripts/ directory to tools/
We also have a "script" directory (without the "s"), which makes it confusing and harder to select the correct directory with shell completion. The "tools" name fits better, since the directory contains tools that are/were helpful during mixxx development (these tools are all scripts - but that is of secondary importance and also coincidence).
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index f497a889f0..2469be9354 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -88,18 +88,18 @@ repos:
rev: stable
hooks:
- id: black
- files: ^scripts/.*$
+ files: ^tools/.*$
- repo: https://gitlab.com/pycqa/flake8
rev: '3.7.9'
hooks:
- id: flake8
- files: ^scripts/.*$
+ files: ^tools/.*$
- repo: local
hooks:
- id: qsscheck
name: qsscheck
description: Run qsscheck to detect broken QSS.
- entry: ./scripts/qsscheck.py
+ entry: ./tools/qsscheck.py
args: [.]
pass_filenames: false
language: python
@@ -116,7 +116,7 @@ repos:
- id: line-length
name: line-length
description: Check for lines longer 100 and brakes them before 80.
- entry: ./scripts/line_length.py
+ entry: ./tools/line_length.py
stages:
- commit
- push