diff options
| author | Simeon Simeonov | 2026-04-22 22:49:42 +0200 |
|---|---|---|
| committer | Simeon Simeonov | 2026-04-22 22:49:42 +0200 |
| commit | c2bc8ec8229834c468cf9c2599a0c59bfc437c14 (patch) | |
| tree | 94c4303b30f77940ca6fe775085d2014f4fb7743 /sample_config.json | |
| parent | 472806c736d3ff1ae7f9d63aea4f8539e4846845 (diff) | |
Restructure the code and remove functionality that doesn't belong in pygitchecker.py (-C, -f, -m, -r)HEADmaster
Diffstat (limited to 'sample_config.json')
| -rw-r--r-- | sample_config.json | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/sample_config.json b/sample_config.json index 81b1e15..fcc68cd 100644 --- a/sample_config.json +++ b/sample_config.json | |||
| @@ -1,15 +1,17 @@ | |||
| 1 | { | 1 | { |
| 2 | "ignore_dirs": [".git", ".venv"], | ||
| 3 | "target_extensions": [".py"], | ||
| 2 | "tests": [ | 4 | "tests": [ |
| 3 | {"name": "black", | 5 | { |
| 4 | "params": ["black", "--check", "--diff", "--no-color", "-q", "%p"], | 6 | "name": "ruff_format", |
| 5 | "check": true}, | 7 | "params": ["/usr/bin/ruff", "format", "--diff", "-q", "%p"], |
| 6 | {"name": "pyflakes", "params": ["pyflakes", "%p"], "check": true}, | 8 | "check": true |
| 7 | {"name": "isort", | 9 | }, |
| 8 | "params": ["isort", "--check", "--diff", "%p"], | 10 | { |
| 9 | "check": true}, | 11 | "name": "ruff_check", |
| 10 | {"name": "pylint", | 12 | "params": ["ruff", "check", "%p"], |
| 11 | "params": ["pylint", "-r", "no", "--exit-zero", "%p"], | 13 | "check": false |
| 12 | "check": true} | 14 | } |
| 13 | ] | 15 | ] |
| 14 | 16 | ||
| 15 | } | 17 | } |
