Skip to content

Commit

Permalink
Get updates from v2.0.436
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Sep 1, 2023
2 parents 66ad0c9 + ffb7eaf commit 30fd378
Show file tree
Hide file tree
Showing 626 changed files with 58,999 additions and 23,447 deletions.
57 changes: 57 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
module.exports = {
env: {
node: true
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
tsconfigRootDir: __dirname,
},
plugins: [
"@typescript-eslint",
"unicorn",
"header",
"prettier"
],
root: true,
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/semi": ["error", "always"],
// Allow unused vars if prefixed by _
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/promise-function-async": "error",
"curly": "error",
"prettier/prettier": [ "error", { "endOfLine": "auto" } ],
"unicorn/filename-case": [
"error",
{
"case": "camelCase",
"ignore": [
"I[A-Z].*\\.ts$",
"vscode-tasks\\.d\\.ts"
]
}
],
},
ignorePatterns: [
"out/",
"dist/",
"wallaby.js",
"webpack.config.js",
".eslintrc.js",
"**/*.d.ts"
],
};
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# 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.
l10n/bundle.l10n.json text eol=lf
22 changes: 22 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# .github/release.yml

changelog:
exclude:
labels:
- Infrastructure
categories:
- title: Exciting New Features 🎉
labels:
- Feature Request
- title: Bug fixes 🛠️
labels:
- bug
- title: 'C# on LSP (Omnisharp Parity)'
labels:
- Omnisharp-Parity
- title: Omnisharp (Legacy support)
labels:
- Omnisharp
- title: Other Changes
labels:
- "*"
22 changes: 0 additions & 22 deletions .github/workflows/branch-merge.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ bin
obj
node_modules
out
.roslyn/
.omnisharp/
.omnisharp-*/
.vs/
.debugger/
.razor/
.razoromnisharp/
.vscode-test/
dist/
*.razor.json
Expand All @@ -26,5 +28,3 @@ coverage/

\.DS_Store
vsix/

\.vscodeignore
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
out
dist
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"endOfLine":"auto"
}
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"orta.vscode-jest"
]
}
Loading

0 comments on commit 30fd378

Please sign in to comment.