Skip to content

Commit 2e10bb5

Browse files
authored
Install outside of the cache directory (sublimelsp#38)
1 parent a9271c3 commit 2e10bb5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

plugin.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class LspEslintPlugin(NpmClientHandler):
2121
server_directory = 'language-server'
2222
server_binary_path = os.path.join(server_directory, 'out', 'eslintServer.js')
2323

24+
@classmethod
25+
def install_in_cache(cls) -> bool:
26+
return False
27+
2428
def __init__(self, *args: Any, **kwargs: Any) -> None:
2529
super().__init__(*args, **kwargs)
2630
self._probe_failed = set() # type: Set[str]

0 commit comments

Comments
 (0)