mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
15 lines
378 B
Batchfile
15 lines
378 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
set VERSION=2.1.0
|
|
curl -L -o "vscode-eslint.vsix" "https://github.com/microsoft/vscode-eslint/releases/download/release%%2F%VERSION%-next.1/vscode-eslint-%VERSION%.vsix"
|
|
call "%~dp0\run_unzip.cmd" vscode-eslint.vsix
|
|
del vscode-eslint.vsix
|
|
|
|
echo @echo off ^
|
|
|
|
node %%~dp0\extension\server\out\eslintServer.js %%* ^
|
|
|
|
> eslint-language-server.cmd
|
|
|