Skip to content

Commit 6c4ad93

Browse files
committed
add Python's format specification mini-language
1 parent 9ae9da8 commit 6c4ad93

8 files changed

Lines changed: 2145 additions & 151 deletions

File tree

.jscsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"requireCapitalizedConstructors": true,
2222
"requireCommaBeforeLineBreak": true,
2323
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch", "finally"],
24-
"requireDotNotation": true,
24+
"requireDotNotation": false,
2525
"requireLineFeedAtFileEnd": true,
2626
"requireParenthesesAroundIIFE": true,
2727
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "||", "&&", ",", ":"],

.jshintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"proto": false,
4242
"scripturl": false,
4343
"shadow": false,
44-
"sub": false,
44+
"sub": true,
4545
"supernew": false,
4646
"validthis": false,
4747
"couch": false,

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ setup:
2626

2727
.PHONY: test
2828
test:
29-
$(ISTANBUL) cover node_modules/.bin/_mocha -- test/index.js
29+
$(ISTANBUL) cover node_modules/.bin/_mocha -- --timeout 60000 test/index.js
3030
$(ISTANBUL) check-coverage --branches 100
3131
node test/readme.js

README.md

Lines changed: 615 additions & 19 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)