Skip to content

Commit 69ca21a

Browse files
committed
chore(style): add eslintignore file
1 parent 446fe79 commit 69ca21a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coverage/

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ before_script: greenkeeper-lockfile-update
1212
script:
1313
- yarn commitlint --from="$TRAVIS_BRANCH" --to="$TRAVIS_COMMIT"
1414
- yarn commitlint --from=$TRAVIS_COMMIT
15-
- yarn test
15+
- yarn lint && yarn test
1616
after_script: greenkeeper-lockfile-upload
1717
jobs:
1818
include:

index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ const snapshotProcessor = require('./processors/snapshot-processor');
1414
module.exports = {
1515
configs: {
1616
recommended: {
17-
plugins: [
18-
'jest'
19-
],
17+
plugins: ['jest'],
2018
env: {
21-
'jest/globals': true
19+
'jest/globals': true,
2220
},
2321
rules: {
2422
'jest/no-disabled-tests': 'warn',

0 commit comments

Comments
 (0)