forked from Nike-Inc/spark-expectations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prospector.yaml
47 lines (41 loc) · 1.08 KB
/
prospector.yaml
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
strictness: high
test-warnings: True
doc-warnings: false
ignore-paths:
- build
- venv
- .eggs
- .mypy_cache
- htmlcov
- spark_expectations/examples/
- tests #commented until test scripts corrected
max-line-length: 120
pylint:
disable:
- too-many-branches
- too-many-statements
- too-many-instance-attributes
- cyclic-import
- len-as-condition
- invalid-name
- no-else-return
- no-self-use
- protected-access
- too-many-arguments
- too-many-locals
- inconsistent-return-statements
- import-outside-toplevel
- consider-using-set-comprehension
- useless-object-inheritance
- unnecessary-pass
- raise-missing-from
- broad-except
- arguments-differ
- W0622 # getting error - built-in is being redefined: Redefining built-in 'round' (redefined-builtin).
pycodestyle:
# W293: disabled because we have newlines in docstrings
# E203: disabled because pep8 and black disagree on whitespace before colon in some cases
disable: W293,E203, E203 # conflicts with black formatting
mccabe:
disable:
- MC0001