Skip to content

Commit bc4dd37

Browse files
authored
chore(editor): set indent size=2 for the yaml files (#8366)
Signed-off-by: jsvisa <[email protected]>
1 parent b8eebbd commit bc4dd37

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ indent_size = 4
1515
[*.rs]
1616
max_line_length = 100
1717

18+
[*.{yml,yaml}]
19+
indent_size = 2
20+
1821
[*.md]
1922
# double whitespace at end of line
2023
# denotes a line break in Markdown

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ contact_links:
55
about: Please ask and answer questions here to keep the issue tracker clean.
66
- name: Security
77
url: mailto:[email protected]
8-
about: Please report security vulnerabilities here.
8+
about: Please report security vulnerabilities here.

.github/ISSUE_TEMPLATE/feature.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body:
1111
label: Describe the feature
1212
description: |
1313
Please describe the feature and what it is aiming to solve, if relevant.
14-
14+
1515
If the feature is for a crate, please include a proposed API surface.
1616
validations:
1717
required: true

.github/workflows/assertoor.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
id: services
3030
run: |
3131
export github_sha=${{ github.sha }}
32-
export github_repository=${{ github.repository }}
32+
export github_repository=${{ github.repository }}
3333
3434
cat etc/assertoor/assertoor-template.yaml | envsubst > etc/assertoor/assertoor.yaml
3535
@@ -92,7 +92,7 @@ jobs:
9292
elif [ "$task_result" == "failure" ]; then
9393
task_result="${RED}failure${NC}"
9494
fi
95-
95+
9696
echo -e " $(printf '%-4s' "$task_id")\t$task_status\t$task_result\t$(printf '%-50s' "$task_graph$task_name") \t$task_title"
9797
done <<< $(echo "$tasks")
9898
}
@@ -153,7 +153,7 @@ jobs:
153153
echo "$task_lines"
154154
fi
155155
156-
if [ $failed_tests -gt 0 ]; then
156+
if [ $failed_tests -gt 0 ]; then
157157
final_test_result="failure"
158158
break
159159
fi
@@ -197,7 +197,7 @@ jobs:
197197
with:
198198
name: "kurtosis-enclave-dump-${{ github.run_id }}"
199199
path: ./temp/dump
200-
200+
201201
- name: Return test result
202202
shell: bash
203203
run: |
@@ -227,4 +227,3 @@ jobs:
227227
228228
exit 1 # fail action
229229
fi
230-

.github/workflows/label-pr.yml

-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ jobs:
2121
script: |
2222
const label_pr = require('./.github/scripts/label_pr.js')
2323
await label_pr({github, context})
24-

0 commit comments

Comments
 (0)