Created
November 13, 2018 22:40
-
-
Save Blake-C/50bcf660d899e43cbfe1a3badb656c66 to your computer and use it in GitHub Desktop.
Sublime Text Linter Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"debug": true, | |
"delay": 0.25, | |
"lint_mode": "background", | |
"linters": { | |
"eslint": { | |
"@disable": false, | |
"args": [], | |
"excludes": [], | |
"env": { | |
"PATH": "~/.nvm/versions/node/v8.12.0/bin" | |
}, | |
"styles": [ | |
{ | |
"icon": "triangle" | |
} | |
] | |
}, | |
"sass": { | |
"@disable": false, | |
"args": [], | |
"excludes": [], | |
"env": { | |
"PATH": "~/.nvm/versions/node/v8.12.0/bin" | |
}, | |
"styles": [ | |
{ | |
"icon": "triangle" | |
} | |
] | |
}, | |
"phpcs": { | |
"args": "--standard='${folder}/phpcs.xml'", | |
"styles": [ | |
{ | |
"icon": "triangle" | |
} | |
] | |
} | |
}, | |
"no_column_highlights_line": true, | |
"paths": { | |
"linux": [], | |
"osx": [ | |
"../../../vendor/bin/phpcs", | |
"~/.composer/vendor/bin" | |
], | |
"windows": [] | |
}, | |
"show_marks_in_minimap": true, | |
"show_panel_on_save": "view", | |
"statusbar.counters_template": "(w: {} | e: {})", | |
"statusbar.messages_template": "", | |
"syntax_map": { | |
"coffeescript (gulpfile)": "coffeescript", | |
"html (django)": "html", | |
"html (rails)": "html", | |
"html 5": "html", | |
"javascript (babel)": "javascript", | |
"javascript (eslint)": "javascript", | |
"javascript (gruntfile)": "javascript", | |
"javascript (gulpfile)": "javascript", | |
"javascript (postcss)": "javascript", | |
"javascript (stylelint)": "javascript", | |
"javascript (webpack)": "javascript", | |
"json (babel)": "json", | |
"json (bower)": "json", | |
"json (composer)": "json", | |
"json (eslint)": "json", | |
"json (npm)": "json", | |
"json (postcss)": "json", | |
"json (settings)": "json", | |
"json (stylelint)": "json", | |
"json (sublime)": "json", | |
"json (tern js)": "json", | |
"magicpython": "python", | |
"php": "html", | |
"python django": "python", | |
"pythonimproved": "python", | |
"xml (config)": "xml", | |
"xml (svg)": "xml", | |
"yaml (circleci)": "yaml", | |
"yaml (docker)": "yaml", | |
"yaml (eslint)": "yaml", | |
"yaml (lock)": "yaml", | |
"yaml (procfile)": "yaml", | |
"yaml (stylelint)": "yaml", | |
"yaml (yarn)": "yaml" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment