Skip to content

Commit fe16734

Browse files
authoredApr 5, 2017
fix(distribution): pass echint (#374)
* fix(distribution): pass echint * feat(editorconfig): stop enforcing indents in md - cache yarn in Travis config
1 parent d9cbb3d commit fe16734

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ trim_trailing_whitespace = true
1111

1212
[*.md]
1313
trim_trailing_whitespace = false
14+
indent_size = unset

‎.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ notifications:
88

99
cache:
1010
bundler: true
11+
yarn: true
1112
directories:
1213
- node_modules
1314

1415
before_install:
1516
- rvm install 2.3.3
17+
- npm install -g yarn
1618
install:
1719
- bundle install
18-
- npm install -g yarn
19-
- yarn install
20+
- yarn
2021

2122
before_script:
2223
- npm test

0 commit comments

Comments
 (0)
Please sign in to comment.