Skip to content

Commit

Permalink
run update, update docs and metadata
Browse files Browse the repository at this point in the history
also adds verbfile.js and custom helper to render examples
  • Loading branch information
jonschlinkert committed Apr 17, 2016
1 parent 06767f8 commit d217378
Show file tree
Hide file tree
Showing 10 changed files with 300 additions and 578 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ insert_final_newline = true
trim_trailing_whitespace = false
insert_final_newline = false

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

[templates/**]
[**/templates/**]
trim_trailing_whitespace = false
insert_final_newline = false
7 changes: 2 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"handle-callback-err": [2, "^(err|error)$" ],
"indent": [2, 2, { "SwitchCase": 1 }],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": [2, { "before": true, "after": true }],
"new-cap": [2, { "newIsCap": true, "capIsNew": false }],
"new-parens": 2,
"no-array-constructor": 2,
Expand All @@ -49,7 +50,6 @@
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-empty-label": 2,
"no-eval": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
Expand All @@ -71,7 +71,7 @@
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-multiple-empty-lines": [2, { "max": 1 }],
"no-native-reassign": 2,
"no-native-reassign": 0,
"no-negated-in-lhs": 2,
"no-new": 2,
"no-new-func": 2,
Expand Down Expand Up @@ -108,13 +108,10 @@
"radix": 2,
"semi": [2, "always"],
"semi-spacing": [2, { "before": false, "after": true }],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-before-keywords": [2, "always"],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
"use-isnan": 2,
Expand Down
18 changes: 0 additions & 18 deletions .jshintrc

This file was deleted.

13 changes: 7 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
sudo: false
language: node_js
node_js:
- "stable"
- "5"
- "4"
- "0.12"
- "0.10"
- stable
- '5'
- '4'
- '0.12'
- '0.10'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.10"
- node_js: '0.10'
- node_js: '0.12'
Loading

0 comments on commit d217378

Please sign in to comment.