Skip to content

Commit 9be9aae

Browse files
authored
Merge pull request #2760 from Azure/main
Release 2.18.0
2 parents 3412c74 + d88ef89 commit 9be9aae

File tree

3,324 files changed

+243084
-36191
lines changed

Some content is hidden

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

3,324 files changed

+243084
-36191
lines changed

.editorconfig

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
root = true
2+
13
[*]
4+
charset = utf-8
25
indent_style = space
36
indent_size = 4
47
insert_final_newline = true
58
trim_trailing_whitespace = true
69

710
[*.{yml,json,bicep}]
811
indent_size = 2
12+
13+
[package*.json]
14+
end_of_line = lf

.eslintrc.common.json

-31
This file was deleted.

.eslintrc.json

+1-114
Original file line numberDiff line numberDiff line change
@@ -1,117 +1,4 @@
11
{
22
"root": true,
3-
"ignorePatterns": [
4-
"node_modules/**/*",
5-
"**/node_modules/**/*",
6-
"dist/**/*",
7-
"build/**/*",
8-
"python/**/*",
9-
"docs/**/*",
10-
"data/**/*"
11-
],
12-
"env": {
13-
"browser": true,
14-
"es6": true,
15-
"node": true
16-
},
17-
"overrides": [
18-
/*
19-
* TYPESCRIPT FILES
20-
*/
21-
{
22-
"files": ["src/**/*.ts"],
23-
"extends": [
24-
".eslintrc.common.json",
25-
"prettier",
26-
"prettier/@typescript-eslint",
27-
"plugin:security/recommended"
28-
],
29-
"plugins": [
30-
"@angular-eslint/eslint-plugin",
31-
"@angular-eslint/eslint-plugin-template",
32-
"@typescript-eslint"
33-
],
34-
"rules": {
35-
"@angular-eslint/component-selector": [
36-
"error",
37-
{
38-
"type": "element",
39-
"prefix": ["bl", "be"],
40-
"style": "kebab-case"
41-
}
42-
],
43-
"@angular-eslint/directive-selector": [
44-
"error",
45-
{
46-
"type": "attribute",
47-
"prefix": ["bl", "be"],
48-
"style": "camelCase"
49-
}
50-
],
51-
"@angular-eslint/no-forward-ref": "off",
52-
"@angular-eslint/no-input-rename": "warn",
53-
"@angular-eslint/use-lifecycle-interface": "warn",
54-
"@typescript-eslint/no-var-requires": "warn",
55-
"@typescript-eslint/no-empty-interface": "warn",
56-
"@typescript-eslint/ban-ts-comment": "warn"
57-
}
58-
},
59-
/*
60-
* COMPONENT TEMPLATES
61-
*/
62-
{
63-
"files": ["src/**/*.html"],
64-
"extends": [
65-
"plugin:@angular-eslint/template/recommended"
66-
],
67-
"rules": {
68-
"@angular-eslint/template/use-track-by-function": "warn"
69-
}
70-
},
71-
/*
72-
* @BATCH-FLASK
73-
*/
74-
{
75-
"files": ["src/@batch-flask/**/*.ts"],
76-
"rules": {
77-
"no-restricted-imports": [
78-
"error",
79-
{
80-
"paths": [
81-
{
82-
"name": "app",
83-
"message": "Importing modules in @batch-flask from app/* is forbidden"
84-
},
85-
{
86-
"name": "common",
87-
"message": "Importing modules in @batch-flask from common/* is forbidden"
88-
}
89-
],
90-
"patterns": ["app/*", "common/*"]
91-
}
92-
]
93-
}
94-
},
95-
/*
96-
* NODE SCRIPTS
97-
*/
98-
{
99-
"files": ["scripts/**/*.ts", "config/**/*.ts"],
100-
"extends": [
101-
"plugin:@typescript-eslint/recommended",
102-
"prettier",
103-
"prettier/@typescript-eslint"
104-
],
105-
"parserOptions": {
106-
"project": [
107-
"tsconfig.eslint.json"
108-
],
109-
"sourceType": "script",
110-
"createDefaultProgram": false
111-
},
112-
"rules": {
113-
"@typescript-eslint/no-var-requires": "off"
114-
}
115-
}
116-
]
3+
"extends": ["./util/common-config/.eslintrc-common.json", "prettier"]
1174
}

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* text=auto
2+
package*.json text eol=lf

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# they will be requested for review when someone opens a
44
# pull request.
55

6-
* @cRui861 @dpwatrous @gingi @zfengms @paterasMSFT @seth-barshay @wiboris @skapur12 @NickKouds
6+
* @cRui861 @dpwatrous @gingi @zfengms @paterasMSFT @wiboris @skapur12 @NickKouds @wanghoppe

.gitignore

+15-20
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1-
node_modules/
2-
build/
3-
dll/
4-
typings/
5-
logs/
6-
env/
7-
*.log*
8-
*.mem.csv
9-
release/
10-
.awcache
1+
/**/node_modules/
2+
/**/lib
3+
/**/lib-cjs
4+
/**/lib-umd
5+
/**/build
6+
/desktop/release/
117
coverage/
12-
*.stackdump
13-
.nyc_output/
14-
coverage.lcov
15-
documentation/
16-
.python-version
17-
18-
# Ignore the english compiled file
19-
i18n/resources.en.json
20-
i18n/xliff/
21-
i18n/xliffs/
8+
env/
9+
Localize/packages/
10+
Localize/out/
11+
/desktop/resources/i18n/*
12+
/packages/common/resources/i18n/*
13+
/packages/playground/resources/i18n/*
14+
/packages/react/resources/i18n/*
15+
/packages/service/resources/i18n/*
16+
/util/bux/resources/i18n/json

.markdownlint.jsonc

-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919

2020
// Emphasis used instead of a heading
2121
"MD036": false
22-
2322
}

.prettierignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**/node_modules/
2+
/**/lib/
3+
/**/lib-cjs/
4+
/**/lib-umd/
5+
/**/test-results/
6+
/**/bin/
7+
/**/build/
8+
9+
*.md
10+
*.html
11+
12+
desktop
13+
docs
14+
.vsts
15+
.vscode
16+
17+
package-lock.json
18+
19+
Localize/out/
20+
Localize/packages/
21+
/**/resources/
22+
packages/arm-batch-rest/src/generated/

.prettierrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"endOfLine": "auto"
3+
}

.vscode/extensions.json

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"EditorConfig.EditorConfig",
55
"dbaeumer.vscode-eslint",
66
"esbenp.prettier-vscode",
7-
"rvest.vs-code-prettier-eslint",
87
"davidanson.vscode-markdownlint"
98
]
109
}

0 commit comments

Comments
 (0)