diff options
Diffstat (limited to 'sample_config.json')
| -rw-r--r-- | sample_config.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sample_config.json b/sample_config.json new file mode 100644 index 0000000..81b1e15 --- /dev/null +++ b/sample_config.json | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | { | ||
| 2 | "tests": [ | ||
| 3 | {"name": "black", | ||
| 4 | "params": ["black", "--check", "--diff", "--no-color", "-q", "%p"], | ||
| 5 | "check": true}, | ||
| 6 | {"name": "pyflakes", "params": ["pyflakes", "%p"], "check": true}, | ||
| 7 | {"name": "isort", | ||
| 8 | "params": ["isort", "--check", "--diff", "%p"], | ||
| 9 | "check": true}, | ||
| 10 | {"name": "pylint", | ||
| 11 | "params": ["pylint", "-r", "no", "--exit-zero", "%p"], | ||
| 12 | "check": true} | ||
| 13 | ] | ||
| 14 | |||
| 15 | } | ||
