Skip to content

Commit a12b3a4

Browse files
committed
Disable pycodestyle lint
1 parent ee94ea0 commit a12b3a4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pyls/plugins/pycodestyle_lint.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@
1818
log = logging.getLogger(__name__)
1919

2020

21+
@hookimpl
22+
def pyls_settings():
23+
# Default pycodestyle to disabled
24+
return {'plugins': {'pycodestyle': {
25+
'enabled': False,
26+
}}}
27+
28+
2129
@hookimpl
2230
def pyls_lint(workspace, document):
2331
config = workspace._config

0 commit comments

Comments
 (0)