-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2760 from Azure/main
Release 2.18.0
- Loading branch information
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* text=auto | ||
package*.json text eol=lf |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,4 @@ | |
|
||
// Emphasis used instead of a heading | ||
"MD036": false | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"endOfLine": "auto" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.