Skip to content

Commit 1987106

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/out-of-order-completions
2 parents b91b8ea + 479285d commit 1987106

File tree

11,370 files changed

+1257142
-474833
lines changed

Some content is hidden

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

11,370 files changed

+1257142
-474833
lines changed

.c8rc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"reporter": ["lcovonly", "cobertura"],
2+
"reporter": ["lcovonly", "cobertura", "v8", "v8-json", "codecov"],
33
"src": "src",
44
"include": ["src/**", "built/local/**"],
55
"exclude": ["**/node_modules/**"],

.devcontainer/Dockerfile

Lines changed: 0 additions & 7 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
13
{
24
"name": "Node.js",
3-
"build": {
4-
"dockerfile": "Dockerfile",
5-
"args": {
6-
"VARIANT": "18"
7-
}
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm",
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
"features": {
10+
"ghcr.io/devcontainers/features/go:1": {}
11+
},
12+
13+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
14+
// "forwardPorts": [],
15+
16+
// Use 'postCreateCommand' to run commands after the container is created.
17+
"postCreateCommand": {
18+
"Configure Build Tools": "sudo corepack enable npm; sudo npm install -g hereby; npm ci",
19+
"Install pprof": "go install github.com/google/pprof@latest",
20+
"Install Graphviz": "sudo apt install graphviz"
821
},
22+
23+
// Configure tool-specific properties.
924
"customizations": {
1025
"vscode": {
1126
"settings": {
@@ -23,5 +38,7 @@
2338
]
2439
}
2540
},
41+
42+
// More info: https://aka.ms/dev-containers-non-root.
2643
"remoteUser": "node"
2744
}

.dprint.jsonc

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
// If updating this, also update the config in dtsBundler.mjs.
23
"indentWidth": 4,
34
"lineWidth": 1000,
45
"newLineKind": "auto",
@@ -28,15 +29,9 @@
2829
"exportDeclaration.sortNamedExports": "caseInsensitive",
2930
"importDeclaration.sortNamedImports": "caseInsensitive"
3031
},
31-
"prettier": {
32-
"newLineKind": "lf",
33-
"associations": [
34-
"**/*.{yaml,yml}"
35-
],
36-
"yml.tabWidth": 2,
37-
"yaml.tabWidth": 2,
38-
"yml.singleQuote": true,
39-
"yaml.singleQuote": true
32+
"yaml": {
33+
"indentWidth": 2,
34+
"quotes": "preferSingle"
4035
},
4136
"json": {
4237
// This would be good to do in known-JSONC files, but VS Code warns on trailing commas.
@@ -56,9 +51,10 @@
5651
"**/_namespaces/**"
5752
],
5853
// Note: if adding new languages, make sure settings.template.json is updated too.
54+
// Also, if updating typescript, update the one in package.json.
5955
"plugins": [
60-
"https://plugins.dprint.dev/typescript-0.90.0.wasm",
61-
"https://plugins.dprint.dev/json-0.19.2.wasm",
62-
"https://plugins.dprint.dev/prettier-0.39.0.json@896b70f29ef8213c1b0ba81a93cee9c2d4f39ac2194040313cd433906db7bc7c"
56+
"https://plugins.dprint.dev/typescript-0.93.4.wasm",
57+
"https://plugins.dprint.dev/json-0.19.4.wasm",
58+
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm"
6359
]
6460
}

.eslint-plugin-local.cjs

Lines changed: 0 additions & 12 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 176 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ body:
3838
3939
Please keep and fill in the line that best applies.
4040
value: |
41-
- This is a crash
4241
- This changed between versions ______ and _______
4342
- This changed in commit or PR _______
4443
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about _________

.github/codecov.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
comment: false
2+
3+
coverage:
4+
precision: 5
5+
status:
6+
patch:
7+
default:
8+
informational: true
9+
project:
10+
default:
11+
informational: true
12+
13+
github_checks:
14+
annotations: false
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: CodeQL Configuration
22

3-
paths:
4-
- src
5-
- scripts
6-
- Herebyfile.mjs
73
paths-ignore:
84
- src/lib
5+
- tests
6+
7+
query-filters:
8+
# Falls over on our dynamic RegExp generation
9+
- exclude:
10+
id: js/regex-injection

0 commit comments

Comments
 (0)