Skip to content

Commit

Permalink
add Python's format specification mini-language
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Sep 6, 2015
1 parent 9ae9da8 commit 6c4ad93
Show file tree
Hide file tree
Showing 8 changed files with 2,145 additions and 151 deletions.
2 changes: 1 addition & 1 deletion .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"requireCapitalizedConstructors": true,
"requireCommaBeforeLineBreak": true,
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch", "finally"],
"requireDotNotation": true,
"requireDotNotation": false,
"requireLineFeedAtFileEnd": true,
"requireParenthesesAroundIIFE": true,
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "||", "&&", ",", ":"],
Expand Down
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"proto": false,
"scripturl": false,
"shadow": false,
"sub": false,
"sub": true,
"supernew": false,
"validthis": false,
"couch": false,
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ setup:

.PHONY: test
test:
$(ISTANBUL) cover node_modules/.bin/_mocha -- test/index.js
$(ISTANBUL) cover node_modules/.bin/_mocha -- --timeout 60000 test/index.js
$(ISTANBUL) check-coverage --branches 100
node test/readme.js
634 changes: 615 additions & 19 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit 6c4ad93

Please sign in to comment.