Skip to content

Commit d67dfa4

Browse files
committed
editor config
1 parent 3231d35 commit d67dfa4

2 files changed

Lines changed: 33 additions & 5 deletions

File tree

.editorconfig

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
9+
indent_style = space
10+
indent_size = 4
11+
tab_width = 4
12+
continuation_indent_size = 4
13+
14+
max_line_length = off
15+
16+
[*.{cpp,c,h,hpp}]
17+
indent_style = space
18+
indent_size = 4
19+
tab_width = 4
20+
continuation_indent_size = 4
21+
22+
curly_bracket_next_line = false
23+
24+
c_pointer_alignment = left
25+
26+
allow_short_if = true
27+
allow_short_case = true
28+
29+
trim_trailing_whitespace = true
30+
31+
[*.md]
32+
trim_trailing_whitespace = false
33+
max_line_length = off

.github/workflows/build.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ jobs:
7474
path: ./artifacts/
7575
merge-multiple: true
7676

77-
- name: List downloaded artifacts
78-
run: |
79-
echo "Contents of ./artifacts:"
80-
ls -R ./artifacts
81-
8277
- name: Get latest release tag
8378
id: getrelease
8479
run: echo "tag=$(curl -s https://api.github.com/repos/${{ github.event.repository.full_name }}/releases/latest | jq -r '.tag_name // "${{ github.event.repository.default_branch }}"')" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)