Skip to content

Commit 5d71f7b

Browse files
committed
Hopefully fix line-endings
1 parent 032f676 commit 5d71f7b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ root = true
55
[*]
66
indent_style = space
77
indent_size = 2
8-
end_of_line = crlf
8+
end_of_line = lf # To allow compiling code on CI.
99
charset = utf-8
1010
trim_trailing_whitespace = true
1111
insert_final_newline = true

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf # To allow compiling code on CI.

.nycrc

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,8 @@
22
"extends": "@istanbuljs/nyc-config-typescript",
33
"check-coverage": true,
44
"all": true,
5-
"include": [
6-
"src/**/!(*.test.*).[tj]s?(x)"
7-
],
8-
"exclude": [
9-
"**/external/"
10-
],
11-
"reporter": [
12-
"lcov",
13-
"text",
14-
"text-summary"
15-
],
5+
"include": ["src/**/!(*.test.*).[tj]s?(x)"],
6+
"exclude": ["**/external/"],
7+
"reporter": ["lcov", "text", "text-summary"],
168
"report-dir": "coverage"
179
}

.prettierignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.nyc_output/
2+
coverage/
3+
dist/
4+
node_modules/
5+
6+
# Ignore copied files, to keep the code as close to the original as possible.
7+
**/external/

0 commit comments

Comments
 (0)