Skip to content

Instantly share code, notes, and snippets.

@zerolab
Last active August 29, 2015 14:14
Show Gist options
  • Save zerolab/bddbf54474790d14937d to your computer and use it in GitHub Desktop.
Save zerolab/bddbf54474790d14937d to your computer and use it in GitHub Desktop.
SublimeLinter config
Install SublimeLinter (http://www.sublimelinter.com/en/latest/)
Add the settings to your "SublimeLinter - User settings"
{
"user": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"linters": {
"pep8": {
"@disable": false,
"args": [],
"excludes": [],
"ignore": [
"E501"
],
"max-line-length": null,
"select": ""
},
"phpcs": {
"@disable": false,
"args": [],
"excludes": [],
"standard": "PSR2"
},
"puppet": {
"@disable": false,
"args": [],
"excludes": []
},
"puppetlint": {
"@disable": false,
"args": [],
"excludes": []
}
},
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": false,
"paths": {
"linux": [],
"osx": [],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [
"/usr/local/bin/"
]
},
"rc_search_limit": 3,
"shell_timeout": 10,
"show_errors_on_save": true,
"show_marks_in_minimap": true,
"syntax_map": {
"html (django)": "html",
"html (rails)": "html",
"html 5": "html",
"php": "html",
"python django": "python"
},
"warning_color": "DDB700",
"wrap_find": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment