Skip to content

Commit

Permalink
Use simpler document selector (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Nov 29, 2021
1 parent 3a9625c commit dcef77d
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions LSP-eslint.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -125,36 +125,11 @@
]
},
"command": ["${node_bin}", "${server_path}", "--stdio"],
"selector": "source.js | source.ts | source.jsx | source.tsx | source.js.jsx | source.js.react | source.ts.react | text.html.vue | text.html.basic",
"env": {
// Enables ESLint debug mode
// "DEBUG": "eslint:*,-eslint:code-path",
// The value of `NODE_ENV` to use when running eslint tasks.
// "NODE_ENV": "production",
},
"languages": [
{
"languageId": "javascriptreact",
"document_selector": "source.jsx | source.js.jsx | source.js.react",
},
{
"languageId": "javascript",
"document_selector": "source.js",
},
{
"languageId": "typescriptreact",
"document_selector": "source.tsx | source.ts.react",
},
{
"languageId": "typescript",
"document_selector": "source.ts",
},
{
"languageId": "vue",
"document_selector": "text.html.vue",
},
{
"languageId": "html",
"document_selector": "text.html.basic",
},
],
}

0 comments on commit dcef77d

Please sign in to comment.