Skip to content

Instantly share code, notes, and snippets.

@dgowrie
Last active October 17, 2019 06:15
Show Gist options
  • Select an option

  • Save dgowrie/d7b086414141cc91d5f8ef414e20c0cb to your computer and use it in GitHub Desktop.

Select an option

Save dgowrie/d7b086414141cc91d5f8ef414e20c0cb to your computer and use it in GitHub Desktop.
Sublime Text - SublimeLinter Settings
// SublimeLinter Settings - User
{
"debug": true,
"linters": {
// https://github.com/SublimeLinter/SublimeLinter-eslint/issues/205
// https://github.com/SublimeLinter/SublimeLinter/blob/master/docs/troubleshooting.rst#on-macos
"eslint": {
"disable": false,
"args": [],
"excludes": [],
"env": {
"PATH": "/usr/local/bin"
}
}
},
"paths": {
"linux": [],
"osx": [
"/usr/local/bin/node"
],
"windows": []
}
}
@dgowrie

dgowrie commented Oct 17, 2019

Copy link
Copy Markdown
Author

may possibly need "selector": "source.js, meta.class.js" (with whatever source types) in "eslint: {...}
Tools > Developer > Show Scope Name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment