Skip to content

Commit 3fc94b1

Browse files
authored
Merge branch 'main' into sai/vscodePublishDialog_1Target_ImageTagFix
2 parents 8b49371 + efcf9ba commit 3fc94b1

File tree

81 files changed

+8433
-4792
lines changed

Some content is hidden

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

81 files changed

+8433
-4792
lines changed

eslint/custom-rules/banned-imports.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ module.exports = {
2727

2828
const isFileInReactviews = /\/src\/reactviews\//.test(filePath);
2929
const isFileInSharedInterfaces = /\/src\/sharedInterfaces\//.test(filePath);
30+
const isFileInTest = /\/test\//.test(filePath);
3031
const isImportFromVscodeClient = /vscode-languageclient/.test(importSource);
3132

3233
// Importing *reactviews* from outside reactviews
33-
if (isImportFromReactviews && !isFileInReactviews) {
34+
if (isImportFromReactviews && !isFileInReactviews && !isFileInTest) {
3435
context.report({
3536
node,
3637
message:
37-
"Importing from 'reactviews' is not allowed outside the reactviews directory",
38+
"Importing from 'reactviews' is not allowed outside the reactviews directory (except in test).",
3839
});
3940
}
4041

eslint/custom-rules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "eslint-plugin-custom-eslint-rules",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"main": "index.js"
55
}

localization/LCL/de/vscode-mssql.xlf.lcl

Lines changed: 189 additions & 9 deletions
Large diffs are not rendered by default.

localization/LCL/es/vscode-mssql.xlf.lcl

Lines changed: 233 additions & 23 deletions
Large diffs are not rendered by default.

localization/LCL/fr/vscode-mssql.xlf.lcl

Lines changed: 189 additions & 9 deletions
Large diffs are not rendered by default.

localization/LCL/it/vscode-mssql.xlf.lcl

Lines changed: 234 additions & 24 deletions
Large diffs are not rendered by default.

localization/LCL/ja/vscode-mssql.xlf.lcl

Lines changed: 234 additions & 24 deletions
Large diffs are not rendered by default.

localization/LCL/ko/vscode-mssql.xlf.lcl

Lines changed: 234 additions & 24 deletions
Large diffs are not rendered by default.

localization/LCL/pt-BR/vscode-mssql.xlf.lcl

Lines changed: 233 additions & 23 deletions
Large diffs are not rendered by default.

localization/LCL/ru/vscode-mssql.xlf.lcl

Lines changed: 233 additions & 23 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)