Skip to content

Instantly share code, notes, and snippets.

@Quenty
Created July 8, 2019 00:11
Show Gist options
  • Save Quenty/4e4bfeb694bf432423f5b4a933689222 to your computer and use it in GitHub Desktop.
Save Quenty/4e4bfeb694bf432423f5b4a933689222 to your computer and use it in GitHub Desktop.
SublimeLinter.sublime-settings
// SublimeLinter Settings - User
{
"lint_mode": "background",
"linters":
{
"luacheck":
{
"@disable": false,
"args":
[
],
"excludes":
[
]
},
"json": {
"strict": true
}
},
"styles": [
{
"mark_style": "fill",
"priority": 1,
"scope": "region.yellowish markup.changed.sublime_linter markup.warning.sublime_linter",
"icon": "dot",
"types": [
"warning"
]
},
{
"mark_style": "fill",
"priority": 1,
"scope": "region.redish markup.deleted.sublime_linter markup.error.sublime_linter",
"icon": "dot",
"types": [
"error"
]
}
],
"no_column_highlights_line": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment