summaryrefslogtreecommitdiff
path: root/sample_config.json
blob: 81b1e152950526f1e95072d752fd6bddd4e40d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "tests": [
        {"name": "black",
         "params": ["black", "--check", "--diff", "--no-color", "-q", "%p"],
         "check": true},
        {"name": "pyflakes", "params": ["pyflakes", "%p"], "check": true},
        {"name": "isort",
         "params": ["isort", "--check", "--diff", "%p"],
         "check": true},
        {"name": "pylint",
         "params": ["pylint", "-r", "no", "--exit-zero", "%p"],
         "check": true}
    ]

}