We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f5e0d0 commit bdc6187Copy full SHA for bdc6187
.editorconfig
@@ -7,6 +7,9 @@ insert_final_newline = true
7
indent_style = space
8
indent_size = 4
9
trim_trailing_whitespace = true
10
+block_comment_start = /*
11
+block_comment = *
12
+block_comment_end = */
13
14
[*.md]
15
trim_trailing_whitespace = false
.github/workflows/cs.yml
@@ -0,0 +1,16 @@
1
+name: "Coding Standards"
2
+
3
+on:
4
+ push: null
5
+ pull_request: null
6
+jobs:
+ coding_standards:
+ name: "EditorConfig"
+ runs-on: "ubuntu-20.04"
+ steps:
+ - name: "Checkout code"
+ uses: "actions/checkout@v3"
+ - name: "Check adherence to EditorConfig"
16
+ uses: "greut/eclint-action@v0"
0 commit comments