summaryrefslogtreecommitdiff
path: root/sample_config.json
diff options
context:
space:
mode:
Diffstat (limited to 'sample_config.json')
-rw-r--r--sample_config.json22
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}