-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lintballrc.json
48 lines (48 loc) · 1.09 KB
/
.lintballrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"check_args": {
"autopep8": "--global-config './pyproject.toml' --diff",
"black": "--config './pyproject.toml' --check",
"isort": "--settings-path './pyproject.toml' --check-only",
"pylint": "--rcfile='./pyproject.toml'"
},
"write_args": {
"autopep8": "--global-config './pyproject.toml' --in-place",
"black": "--config './pyproject.toml'",
"isort": "--settings-path './pyproject.toml'",
"pylint": "--rcfile='./pyproject.toml'"
},
"use": {
"autoflake": false,
"autopep8": true,
"black": true,
"docformatter": true,
"isort": true,
"prettier": false,
"prettier-eslint": false,
"pylint": true,
"rubocop": false,
"shellcheck": false,
"shfmt": false,
"yamllint": true
},
"ignores": [
"*/.git/*",
"*/__pycache__/*",
"*/Gemfile.lock",
"*/Pipfile.lock",
"*/project_static/*",
"*/static/*",
"*/templates/*",
"*/vendor/*",
"*/*.css",
"*/*.html",
"*/*.jade",
"*/*.js",
"*/*.scss",
"*/.cache",
"*/.pytest_cache",
"*/.coverage_report",
"*/venv/*",
"*/.tox/*"
]
}