Skip to content

Commit c744d9d

Browse files
committed
eslint and travis configs
1 parent 71a5b9c commit c744d9d

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.eslintrc.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 6,
4+
"ecmaFeatures": {
5+
"experimentalObjectRestSpread": true
6+
},
7+
"sourceType": "module"
8+
},
9+
"plugins": [
10+
"react"
11+
],
12+
"env": {
13+
"es6": true,
14+
"node": true
15+
},
16+
"extends": ["eslint:recommended", "plugin:react/recommended"]
17+
}

.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: node_js
2+
3+
node_js:
4+
- 5.0
5+
- 6.0
6+
- 7.0
7+
8+
# configure notifications (email, IRC, campfire etc)
9+
# please update this section to your needs!
10+
notifications:
11+
irc: "irc.freenode.org#travis"

0 commit comments

Comments
 (0)