We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbaa301 commit d4543e6Copy full SHA for d4543e6
.editorconfig
@@ -7,9 +7,6 @@ charset = utf-8
7
trim_trailing_whitespace = true
8
insert_final_newline = true
9
10
-[*.{json,yml}]
11
-indent_size = 2
+[{package.json,*.yml}]
12
indent_style = space
13
-
14
-[*.md]
15
-trim_trailing_whitespace = false
+indent_size = 2
.gitattributes
@@ -1 +1,2 @@
1
* text=auto
2
+*.js text eol=lf
test.js
@@ -1,7 +1,6 @@
import test from 'ava';
-import fn from './';
+import m from './';
3
4
test(async t => {
5
- t.plan(1);
6
- t.ok(await fn());
+ t.truthy(await m());
});
0 commit comments