We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328e51e commit 8973f76Copy full SHA for 8973f76
2 files changed
linter.sh
@@ -0,0 +1,5 @@
1
+#!/bin/bash
2
+
3
+_bsd_="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4
5
+exec prospector --profile ${_bsd_}/prospector.yaml ${_bsd_}/python
prospector.yaml
@@ -0,0 +1,39 @@
+strictness: high
+test-warnings: True
+doc-warnings: false
+ignore-paths:
6
+ - docs
7
+ - spark-warehouse
8
+ - cover
9
10
+max-line-length: 100
11
12
+pep8:
13
+ run: true
14
+ disable:
15
+ - N802
16
+ - N803
17
+ - N806
18
+ - E302
19
20
+pylint:
21
22
23
+ - too-many-instance-attributes
24
+ - cyclic-import
25
+ - len-as-condition
26
+ - invalid-name
27
+ - no-else-return
28
+ - no-self-use
29
+ - import-error
30
+ - protected-access
31
+ - reimported
32
33
+mccabe:
34
35
+ - MC0001
36
37
+pyroma:
38
39
0 commit comments