Skip to content

Commit

Permalink
Merge pull request #2760 from Azure/main
Browse files Browse the repository at this point in the history
Release 2.18.0
  • Loading branch information
cRui861 authored Jun 27, 2023
2 parents 3412c74 + d88ef89 commit 9be9aae
Show file tree
Hide file tree
Showing 3,324 changed files with 243,084 additions and 36,191 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.{yml,json,bicep}]
indent_size = 2

[package*.json]
end_of_line = lf
31 changes: 0 additions & 31 deletions .eslintrc.common.json

This file was deleted.

115 changes: 1 addition & 114 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,117 +1,4 @@
{
"root": true,
"ignorePatterns": [
"node_modules/**/*",
"**/node_modules/**/*",
"dist/**/*",
"build/**/*",
"python/**/*",
"docs/**/*",
"data/**/*"
],
"env": {
"browser": true,
"es6": true,
"node": true
},
"overrides": [
/*
* TYPESCRIPT FILES
*/
{
"files": ["src/**/*.ts"],
"extends": [
".eslintrc.common.json",
"prettier",
"prettier/@typescript-eslint",
"plugin:security/recommended"
],
"plugins": [
"@angular-eslint/eslint-plugin",
"@angular-eslint/eslint-plugin-template",
"@typescript-eslint"
],
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": ["bl", "be"],
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": ["bl", "be"],
"style": "camelCase"
}
],
"@angular-eslint/no-forward-ref": "off",
"@angular-eslint/no-input-rename": "warn",
"@angular-eslint/use-lifecycle-interface": "warn",
"@typescript-eslint/no-var-requires": "warn",
"@typescript-eslint/no-empty-interface": "warn",
"@typescript-eslint/ban-ts-comment": "warn"
}
},
/*
* COMPONENT TEMPLATES
*/
{
"files": ["src/**/*.html"],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {
"@angular-eslint/template/use-track-by-function": "warn"
}
},
/*
* @BATCH-FLASK
*/
{
"files": ["src/@batch-flask/**/*.ts"],
"rules": {
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "app",
"message": "Importing modules in @batch-flask from app/* is forbidden"
},
{
"name": "common",
"message": "Importing modules in @batch-flask from common/* is forbidden"
}
],
"patterns": ["app/*", "common/*"]
}
]
}
},
/*
* NODE SCRIPTS
*/
{
"files": ["scripts/**/*.ts", "config/**/*.ts"],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"parserOptions": {
"project": [
"tsconfig.eslint.json"
],
"sourceType": "script",
"createDefaultProgram": false
},
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
]
"extends": ["./util/common-config/.eslintrc-common.json", "prettier"]
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* text=auto
package*.json text eol=lf
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# they will be requested for review when someone opens a
# pull request.

* @cRui861 @dpwatrous @gingi @zfengms @paterasMSFT @seth-barshay @wiboris @skapur12 @NickKouds
* @cRui861 @dpwatrous @gingi @zfengms @paterasMSFT @wiboris @skapur12 @NickKouds @wanghoppe
35 changes: 15 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
node_modules/
build/
dll/
typings/
logs/
env/
*.log*
*.mem.csv
release/
.awcache
/**/node_modules/
/**/lib
/**/lib-cjs
/**/lib-umd
/**/build
/desktop/release/
coverage/
*.stackdump
.nyc_output/
coverage.lcov
documentation/
.python-version

# Ignore the english compiled file
i18n/resources.en.json
i18n/xliff/
i18n/xliffs/
env/
Localize/packages/
Localize/out/
/desktop/resources/i18n/*
/packages/common/resources/i18n/*
/packages/playground/resources/i18n/*
/packages/react/resources/i18n/*
/packages/service/resources/i18n/*
/util/bux/resources/i18n/json
1 change: 0 additions & 1 deletion .markdownlint.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@

// Emphasis used instead of a heading
"MD036": false

}
22 changes: 22 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/**/node_modules/
/**/lib/
/**/lib-cjs/
/**/lib-umd/
/**/test-results/
/**/bin/
/**/build/

*.md
*.html

desktop
docs
.vsts
.vscode

package-lock.json

Localize/out/
Localize/packages/
/**/resources/
packages/arm-batch-rest/src/generated/
3 changes: 3 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"endOfLine": "auto"
}
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"rvest.vs-code-prettier-eslint",
"davidanson.vscode-markdownlint"
]
}
Loading

0 comments on commit 9be9aae

Please sign in to comment.