Skip to content

Commit 68d5768

Browse files
authored
Merge pull request #5986 from dibarbet/merge_prerelease
Merge prerelease branch into release
2 parents ef7046c + aa442cd commit 68d5768

File tree

471 files changed

+40635
-18471
lines changed

Some content is hidden

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

471 files changed

+40635
-18471
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: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
"curly": "error",
37+
"prettier/prettier": [ "error", { "endOfLine": "auto" } ],
38+
"unicorn/filename-case": [
39+
"error",
40+
{
41+
"case": "camelCase",
42+
"ignore": [
43+
"I[A-Z].*\\.ts$",
44+
"vscode-tasks\\.d\\.ts"
45+
]
46+
}
47+
],
48+
"header/header": [ 2, "block", [
49+
"---------------------------------------------------------------------------------------------",
50+
" * Copyright (c) Microsoft Corporation. All rights reserved.",
51+
" * Licensed under the MIT License. See License.txt in the project root for license information.",
52+
" *--------------------------------------------------------------------------------------------"
53+
]]
54+
},
55+
ignorePatterns: [
56+
"out/",
57+
"dist/",
58+
"wallaby.js",
59+
"webpack.config.js",
60+
".eslintrc.js",
61+
"**/*.d.ts"
62+
],
63+
};

.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 & 52 deletions
This file was deleted.

.github/workflows/release-ci.yml

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

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ bin
22
obj
33
node_modules
44
out
5+
.roslyn/
56
.omnisharp/
67
.omnisharp-*/
78
.vs/
89
.debugger/
910
.razor/
11+
.razoromnisharp/
1012
.vscode-test/
1113
dist/
1214
*.razor.json
@@ -26,5 +28,3 @@ coverage/
2628

2729
\.DS_Store
2830
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

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 4,
4+
"semi": true,
5+
"singleQuote": true,
6+
"endOfLine":"auto"
7+
}

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"dbaeumer.vscode-eslint",
4+
"esbenp.prettier-vscode"
5+
]
6+
}

0 commit comments

Comments
 (0)