We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f177f62 commit d7cf749Copy full SHA for d7cf749
setup.cfg
@@ -10,3 +10,9 @@ addopts = --capture=sys
10
--ignore=mycli/magic.py
11
--ignore=mycli/packages/parseutils.py
12
--ignore=test/features
13
+
14
+[pep8]
15
+rev = master
16
+docformatter = True
17
+diff = True
18
+error-status = True
tasks.py
@@ -69,8 +69,7 @@ def initialize_options(self):
69
70
def run(self):
71
"""Run the linter."""
72
- cmd = ('pep8radius {branch} --docformatter --diff --error-status'
73
- '{{fix: --in-place}}{{verbose: -vv}}')
+ cmd = 'pep8radius {branch} {{fix: --in-place}}{{verbose: -vv}}'
74
cmd = cmd.format(branch=self.branch)
75
self.call_and_exit(self.apply_options(cmd, ('fix', )))
76
0 commit comments