-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run typescript server from cache (#10)
And all the other usual business.
- Loading branch information
Showing
10 changed files
with
148 additions
and
176 deletions.
There are no files selected for viewing
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[ | ||
{ | ||
"caption": "Preferences: LSP-typescript Settings", | ||
"command": "edit_settings", | ||
"args": { | ||
"base_file": "${packages}/LSP-typescript/LSP-typescript.sublime-settings", | ||
"default": "// Settings in here override those in \"LSP-typescript/LSP-typescript.sublime-settings\",\n\n{\n\t$0\n}\n" | ||
} | ||
}, | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
{ | ||
"client" : { | ||
"enabled": true, | ||
"languages": [ | ||
{ | ||
"languageId": "javascript", | ||
"scopes": [ | ||
"source.js" | ||
], | ||
"syntaxes": [ | ||
"Packages/JavaScript/JavaScript.sublime-syntax", | ||
"Packages/Babel/JavaScript (Babel).sublime-syntax" | ||
] | ||
}, | ||
{ | ||
"languageId": "javascriptreact", | ||
"scopes": [ | ||
"source.jsx" | ||
], | ||
"syntaxes": ["Packages/User/JS Custom/Syntaxes/React.sublime-syntax"] | ||
}, | ||
{ | ||
"languageId": "typescript", | ||
"scopes": [ | ||
"source.ts" | ||
], | ||
"syntaxes": [ | ||
"Packages/TypeScript Syntax/TypeScript.tmLanguage", | ||
] | ||
}, | ||
{ | ||
"scopes": [ | ||
"source.tsx" | ||
], | ||
"syntaxes": ["Packages/TypeScript Syntax/TypeScriptReact.tmLanguage"], | ||
"languageId": "typescriptreact" | ||
} | ||
], | ||
"initializationOptions": {}, | ||
"settings": {} | ||
} | ||
"languages": [ | ||
{ | ||
"languageId": "javascript", | ||
"scopes": [ | ||
"source.js", | ||
], | ||
"syntaxes": [ | ||
"Packages/JavaScript/JavaScript.sublime-syntax", | ||
"Packages/Babel/JavaScript (Babel).sublime-syntax", | ||
], | ||
}, | ||
{ | ||
"languageId": "javascriptreact", | ||
"scopes": [ | ||
"source.jsx", | ||
], | ||
"syntaxes": [ | ||
"Packages/User/JS Custom/Syntaxes/React.sublime-syntax", | ||
], | ||
}, | ||
{ | ||
"languageId": "typescript", | ||
"scopes": [ | ||
"source.ts", | ||
], | ||
"syntaxes": [ | ||
"Packages/TypeScript Syntax/TypeScript.tmLanguage", | ||
], | ||
}, | ||
{ | ||
"languageId": "typescriptreact", | ||
"scopes": [ | ||
"source.tsx", | ||
], | ||
"syntaxes": [ | ||
"Packages/TypeScript Syntax/TypeScriptReact.tmLanguage", | ||
], | ||
}, | ||
], | ||
"initializationOptions": {}, | ||
"settings": {}, | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"*": { | ||
"*": [ | ||
"lsp_utils", | ||
"sublime_lib" | ||
] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Tox (http://tox.testrun.org/) is a tool for running tests | ||
# in multiple virtualenvs. This configuration file will run the | ||
# test suite on all supported python versions. To use it, "pip install tox" | ||
# and then run "tox" from this directory. | ||
|
||
[tox] | ||
envlist = py3 | ||
skipsdist = True | ||
|
||
[pycodestyle] | ||
max-line-length = 120 | ||
|
||
[flake8] | ||
ignore = | ||
F841 # local variable is assigned to but never used | ||
E252 # missing whitespace around parameter equals | ||
W504 # line break after binary operator | ||
F821 # undefined name | ||
max-line-length = 120 |
4 changes: 2 additions & 2 deletions
4
package-lock.json → typescript-language-server/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "typescript-language-server", | ||
"version": "0.4.0", | ||
"dependencies": { | ||
"typescript": "3.8.3", | ||
"typescript-language-server": "0.4.0" | ||
} | ||
} |