Skip to content

Commit d4543e6

Browse files
committed
Tweaks
1 parent cbaa301 commit d4543e6

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.editorconfig

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ charset = utf-8
77
trim_trailing_whitespace = true
88
insert_final_newline = true
99

10-
[*.{json,yml}]
11-
indent_size = 2
10+
[{package.json,*.yml}]
1211
indent_style = space
13-
14-
[*.md]
15-
trim_trailing_whitespace = false
12+
indent_size = 2

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* text=auto
2+
*.js text eol=lf

test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import test from 'ava';
2-
import fn from './';
2+
import m from './';
33

44
test(async t => {
5-
t.plan(1);
6-
t.ok(await fn());
5+
t.truthy(await m());
76
});

0 commit comments

Comments
 (0)