Skip to content

Commit 736280f

Browse files
committed
enable CI and add editorconfig
1 parent e9293ab commit 736280f

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[{package.json,.*rc,*.yml}]
11+
indent_style = space
12+
indent_size = 2
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- "node"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ npm i -D preact-cli-plugin-async
1414
import asyncPlugin from 'preact-cli-plugin-async';
1515

1616
export default (config) => {
17-
asyncPlugin(config);
17+
asyncPlugin(config);
1818
}
1919
```
2020

2121
## License
2222

2323
MIT © [developit](https://github.com/developit)
2424

25+
[Preact CLI]: https://github.com/developit/preact-cli
2526
[Kneden]: https://github.com/babel/kneden

0 commit comments

Comments
 (0)