We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860c3eb commit 45702ecCopy full SHA for 45702ec
pyls/plugins/pylint_lint.py
@@ -146,6 +146,13 @@ def _build_pylint_flags(settings):
146
return ' '.join(pylint_args)
147
148
149
+@hookimpl
150
+def pyls_settings():
151
+ # Default pylint to disabled because it requires a config
152
+ # file to be useful.
153
+ return {'plugins': {'pylint': {'enabled': False, 'args': []}}}
154
+
155
156
@hookimpl
157
def pyls_lint(config, document, is_saved):
158
settings = config.plugin_settings('pylint')
vscode-client/package.json
@@ -237,7 +237,7 @@
237
},
238
"pyls.plugins.pylint.enabled": {
239
"type": "boolean",
240
- "default": true,
+ "default": false,
241
"description": "Enable or disable the plugin."
242
243
"pyls.plugins.pylint.args": {
0 commit comments