Skip to content

Commit

Permalink
refactor(lint): linted all the files using 'standard' style
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickleet committed Apr 25, 2018
1 parent e15da2f commit 22be2b2
Show file tree
Hide file tree
Showing 6 changed files with 904 additions and 90 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,8 @@
{
"extends": "standard",
"globals": {
"describe": true,
"it": true,
"expect": true
}
}
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -13,6 +13,7 @@ install:
- npm install
- npm install -g codecov
script:
- npm run lint
- npm run test
- codecov
after_success:
Expand Down
2 changes: 1 addition & 1 deletion __tests__/index.js
Expand Up @@ -5,4 +5,4 @@ describe('index', () => {
let result = index()
expect(result).toEqual({ hello: 'world' })
})
})
})

0 comments on commit 22be2b2

Please sign in to comment.