Skip to content

Commit 02b7c39

Browse files
authored
Merge branch 'main' into thays_remove_blazor_debugging_extension
2 parents b17f79c + e5c352d commit 02b7c39

File tree

768 files changed

+94255
-25390
lines changed

Some content is hidden

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

768 files changed

+94255
-25390
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ root = true
55

66
# 4 space indentation
77
[*]
8+
insert_final_newline = true
89
indent_style = space
910
indent_size = 4
1011
trim_trailing_whitespace = true
12+
max_line_length = 120
1113

1214
# 2 space indentation and utf-8 for *.yml, package.json, and .json files under src
1315
[{*.yml,package.json,*.json}]

.eslintrc.js

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
module.exports = {
2+
env: {
3+
node: true
4+
},
5+
extends: [
6+
"eslint:recommended",
7+
"plugin:@typescript-eslint/recommended"
8+
],
9+
parser: "@typescript-eslint/parser",
10+
parserOptions: {
11+
project: true,
12+
tsconfigRootDir: __dirname,
13+
},
14+
plugins: [
15+
"@typescript-eslint",
16+
"unicorn",
17+
"header",
18+
"prettier"
19+
],
20+
root: true,
21+
rules: {
22+
"@typescript-eslint/no-explicit-any": "off",
23+
"@typescript-eslint/no-non-null-assertion": "off",
24+
"@typescript-eslint/semi": ["error", "always"],
25+
// Allow unused vars if prefixed by _
26+
"@typescript-eslint/no-unused-vars": [
27+
"warn",
28+
{
29+
"argsIgnorePattern": "^_",
30+
"varsIgnorePattern": "^_",
31+
"caughtErrorsIgnorePattern": "^_"
32+
}
33+
],
34+
"@typescript-eslint/no-namespace": "off",
35+
"@typescript-eslint/promise-function-async": "error",
36+
"prefer-promise-reject-errors": "error",
37+
"curly": "error",
38+
"prettier/prettier": [ "error", { "endOfLine": "auto" } ],
39+
"unicorn/filename-case": [
40+
"error",
41+
{
42+
"case": "camelCase",
43+
"ignore": [
44+
"I[A-Z].*\\.ts$",
45+
"vscode-tasks\\.d\\.ts"
46+
]
47+
}
48+
],
49+
"header/header": [ 2, "block", [
50+
"---------------------------------------------------------------------------------------------",
51+
" * Copyright (c) Microsoft Corporation. All rights reserved.",
52+
" * Licensed under the MIT License. See License.txt in the project root for license information.",
53+
" *--------------------------------------------------------------------------------------------"
54+
]]
55+
},
56+
ignorePatterns: [
57+
"out/",
58+
"dist/",
59+
"wallaby.js",
60+
"webpack.config.js",
61+
".eslintrc.js",
62+
"**/*.d.ts"
63+
],
64+
};

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This is a generated file from vscode-l10n tool, and it always uses 'lf' and line ending. Set it to 'lf' so we don't get warning every time when localization file get changed.
2+
l10n/bundle.l10n.json text eol=lf

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Issue with Razor (Blazor) tooling
4-
url: https://github.com/dotnet/razor-tooling/issues/new/choose
5-
about: Please open issues relating to the Razor tooling in dotnet/razor-tooling.
4+
url: https://github.com/dotnet/razor/issues/new/choose
5+
about: Please open issues relating to the Razor tooling in dotnet/razor.

.github/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# .github/release.yml
2+
3+
changelog:
4+
exclude:
5+
labels:
6+
- Infrastructure
7+
categories:
8+
- title: Exciting New Features 🎉
9+
labels:
10+
- Feature Request
11+
- title: Bug fixes 🛠️
12+
labels:
13+
- bug
14+
- title: 'C# on LSP (Omnisharp Parity)'
15+
labels:
16+
- Omnisharp-Parity
17+
- title: Omnisharp (Legacy support)
18+
labels:
19+
- Omnisharp
20+
- title: Other Changes
21+
labels:
22+
- "*"

.github/workflows/branch-merge.yml

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

.github/workflows/ci.yml

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

.github/workflows/release-ci.yml

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

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ bin
22
obj
33
node_modules
44
out
5+
.roslyn/
56
.omnisharp/
67
.omnisharp-*/
78
.vs/
89
.debugger/
910
.razor/
11+
.razoromnisharp/
12+
.razortelemetry/
1013
.vscode-test/
1114
dist/
1215
*.razor.json
@@ -26,5 +29,3 @@ coverage/
2629

2730
\.DS_Store
2831
vsix/
29-
30-
\.vscodeignore

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
out
2+
dist

0 commit comments

Comments
 (0)