This commit is contained in:
Martin Aeschlimann 2024-10-21 16:19:58 +02:00 коммит произвёл GitHub
Родитель 3776a89503
Коммит ca161c672f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
7 изменённых файлов: 3379 добавлений и 2361 удалений

Просмотреть файл

@ -10,7 +10,6 @@
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",

Просмотреть файл

@ -1 +0,0 @@
--ignore-engines true

Просмотреть файл

@ -2,4 +2,3 @@
The **WSL recommender extension** adds commands to open a folder or workspace located in the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl). It will help installing the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl) and the [WSL extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl).
This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.

Просмотреть файл

@ -25,10 +25,10 @@ extends:
template: azure-pipelines/extension/stable.yml@templates
parameters:
buildSteps:
- script: yarn install --frozen-lockfile
- script: npm ci
displayName: Install dependencies
- script: yarn lint
- script: npm run lint
displayName: Static analysis
tsa:

3360
package-lock.json сгенерированный Normal file

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -4,7 +4,7 @@
"description": "%description%",
"publisher": "ms-vscode-remote",
"icon": "resources/remote-wsl.png",
"version": "0.0.19",
"version": "0.0.20",
"license": "MIT",
"repository": {
"type": "git",
@ -75,29 +75,29 @@
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none && yarn lint",
"compile": "webpack --mode none && npm run lint",
"watch": "webpack --mode none --watch",
"lint": "eslint src --ext ts",
"preversion": "yarn compile",
"preversion": "npm run compile",
"postversion": "git push && git push --tags",
"patch-insiders": "yarn compile && node ./build/patch-local.js .vscode-insiders",
"patch-dev": "yarn compile && node ./build/patch-local.js .vscode-oss-dev"
"patch-insiders": "npm run compile && node ./build/patch-local.js .vscode-insiders",
"patch-dev": "npm run compile && node ./build/patch-local.js .vscode-oss-dev"
},
"devDependencies": {
"@vscode/extension-telemetry": "0.7.5",
"@vscode/extension-telemetry": "0.9.7",
"vscode-nls": "^5.2.0",
"vscode-tas-client": "^0.1.63",
"vscode-tas-client": "^0.1.84",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/node": "16.x",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.34.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"vscode-nls-dev": "^4.0.3",
"webpack": "^5.75.0",
"@types/node": "18.x",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"vscode-nls-dev": "^4.0.4",
"webpack": "^5.95.0",
"webpack-cli": "^5.0.1"
}
}

2339
yarn.lock

Разница между файлами не показана из-за своего большого размера Загрузить разницу