Skip to content

Commit 94fde5d

Browse files
authored
Reorganize the repo to better match other SDKs (Azure#209)
Also adds an .editorconfig for some consistent settings.
1 parent abbc8a3 commit 94fde5d

File tree

7 files changed

+19
-4
lines changed

7 files changed

+19
-4
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
file_header_template = Copyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the MIT License.
5+
insert_final_newline = true
6+
indent_size = 4
7+
indent_style = space
8+
trim_trailing_whitespace = true
9+
10+
[*.toml]
11+
indent_size = 2
12+
13+
[*.{yaml,yml}]
14+
indent_size = 2

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: fmt
2727
run: |
2828
cargo fmt --all -- --check
29-
./scripts/check_json_format.sh
29+
./eng/scripts/check_json_format.sh
3030
cargo fmt --manifest-path services/Cargo.toml --all -- --check
3131
if: matrix.rust == 'stable'
3232

.vscode/extensions.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"recommendations": [
3-
"matklad.rust-analyzer",
4-
"bungcip.better-toml"
3+
"bungcip.better-toml",
4+
"editorconfig.editorconfig",
5+
"matklad.rust-analyzer"
56
]
6-
}
7+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)