Skip to content

Commit

Permalink
run update
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Dec 31, 2016
1 parent b7ff3c8 commit b983cb9
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 20 deletions.
13 changes: 2 additions & 11 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# http://editorconfig.org
root = true

[*]
Expand All @@ -9,14 +8,6 @@ indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
[{**/{actual,fixtures,expected,templates}/**,*.md}]
trim_trailing_whitespace = false
insert_final_newline = false

[**/{actual,fixtures,expected}/**]
trim_trailing_whitespace = false
insert_final_newline = false

[**/templates/**]
trim_trailing_whitespace = false
insert_final_newline = false
insert_final_newline = false
25 changes: 20 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
# always ignore files
*.DS_Store
*.sublime-*
_gh_pages
bower_components

# test related, or directories generated by tests
test/actual
actual
coverage
.nyc*

# npm
node_modules
npm-debug.log
actual
test/actual

# yarn
yarn.lock
yarn-error.log

# misc
_gh_pages
_draft
_drafts
bower_components
vendor
temp
tmp
TODO.md
vendor
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
sudo: false
os:
- linux
- osx
language: node_js
node_js:
- stable
- '5'
- node
- '6'
- '4'
- '0.12'
- '0.10'
matrix:
fast_finish: true
allow_failures:
- node_js: '0.10'
- node_js: '4'
- node_js: '0.12'
- node_js: '0.10'

0 comments on commit b983cb9

Please sign in to comment.