Skip to content

Instantly share code, notes, and snippets.

@aphearin
Created March 3, 2018 18:19
Show Gist options
  • Save aphearin/1597c42811aa152f51ba94b28eeb0bf6 to your computer and use it in GitHub Desktop.
Save aphearin/1597c42811aa152f51ba94b28eeb0bf6 to your computer and use it in GitHub Desktop.
Attempt to adapt user settings file for SublimeLinter v4: linter behavior does not respond to modifications to ignored error codes
// SublimeLinter Settings - User
{
"paths": {
"linux": [],
"osx": [
"/Users/aphearin/anaconda/bin/"
],
"windows": []
},
"linters": {
"flake8": {
"disable": false,
"args": [],
"builtins": "",
"excludes": [],
"executable": "",
"ignore": [
"E111","E121","E122","E123","E124","E126",
"E128","E129","E131","E201","E202","E211",
"E227","E228","E241","E203","E226","E262",
"E265","E266","E701","E703","E731","W503"
],
"jobs": "1",
"max-complexity": -1,
"max-line-length": 110,
"select": "",
"show-code": true
},
"pylint": {
"@disable": false,
"args": [],
"disable": "",
"enable": "",
"excludes": [],
"paths": [],
"rcfile": "",
"show-codes": false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment