Skip to content

Commit deb1614

Browse files
authored
Merge pull request #22 from microsoft/sync-main-branch
Merge main from vscode-docs
2 parents efcaa64 + 93faef0 commit deb1614

File tree

2,320 files changed

+135188
-36517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,320 files changed

+135188
-36517
lines changed

.config/CredScanSuppressions.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"tool": "Credential Scanner",
3+
"suppressions": [
4+
{
5+
"file": [
6+
"dist/server/views/raw/v1_51.md",
7+
"dist/server/views/raw/v1_8.md",
8+
"release-notes/v1_51.md",
9+
"release-notes/v1_8.md",
10+
"docs/nodejs/nodejs-debugging.md",
11+
"docs/python/environments.md"
12+
],
13+
"_justification": "These are not real passwords. For documentation purposes only."
14+
}
15+
]
16+
}

.config/tsaoptions.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"instanceUrl": "https://devdiv.visualstudio.com/defaultcollection",
3+
"projectName": "OnlineServices",
4+
"areaPath": "OnlineServices\\VS Code (compliance tracking only)\\Visual Studio Code Services",
5+
"notificationAliases": [
6+
7+
8+
9+
],
10+
"ppe": "false",
11+
"template": "TFSDEVDIV",
12+
"codebaseName": "devdiv_vscode-docs"
13+
}

.devcontainer/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM mcr.microsoft.com/vscode/devcontainers/base:0-debian-10
2+
3+
# Install Git LFS, add a locale
4+
RUN apt-get update && DEBIAN_FRONTEND=noninteractive \
5+
&& apt-get install -yq git-lfs \
6+
&& git lfs install \
7+
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*
8+

.devcontainer/devcontainer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// For format details, see https://aka.ms/vscode-remote/devcontainer.json
2+
{
3+
"name": "VS Code Docs",
4+
"dockerFile": "Dockerfile",
5+
"settings": {
6+
"terminal.integrated.defaultProfile.linux": "zsh"
7+
},
8+
"extensions": [
9+
"yzhang.markdown-all-in-one",
10+
"streetsidesoftware.code-spell-checker",
11+
"DavidAnson.vscode-markdownlint",
12+
"bierner.github-markdown-preview",
13+
"github.vscode-pull-request-github"
14+
],
15+
"remoteUser": "vscode"
16+
}

.eslintrc.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"node": true,
7+
"jquery": true
8+
},
9+
"extends": [
10+
"plugin:security/recommended"
11+
],
12+
"parserOptions": {
13+
"ecmaVersion": 6,
14+
"sourceType": "module"
15+
},
16+
"root": true
17+
}

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1+
* text=auto eol=lf
12
*.gif filter=lfs diff=lfs merge=lfs -text
23
*.mp4 filter=lfs diff=lfs merge=lfs -text
34
*.jpg filter=lfs diff=lfs merge=lfs -text
45
*.png filter=lfs diff=lfs merge=lfs -text
6+
*.md diff=markdown
7+
8+
# Fine-tune GitHub's language detection
9+
docs/** -linguist-documentation
10+
*.md linguist-detectable

.husky/post-checkout

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs post-checkout "$@"

.husky/post-commit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs post-commit "$@"

.husky/post-merge

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs post-merge "$@"

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
./node_modules/.bin/lint-staged

0 commit comments

Comments
 (0)