Skip to content

Commit

Permalink
Update tape, covert, jscs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jun 9, 2015
1 parent d1d2de4 commit bd84112
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 4 deletions.
38 changes: 37 additions & 1 deletion .jscs.json
@@ -1,6 +1,12 @@
{
"additionalRules": [],

"requireSemicolons": true,

"disallowMultipleSpaces": true,

"disallowIdentifierNames": [],

"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],

"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "function"],
Expand Down Expand Up @@ -63,6 +69,36 @@
"validateQuoteMarks": {
"escape": true,
"mark": "'"
}
},

"disallowOperatorBeforeLineBreak": [],

"requireSpaceBeforeKeywords": [
"do",
"for",
"if",
"else",
"switch",
"case",
"try",
"catch",
"finally",
"while",
"with",
"return"
],

"validateAlignedFunctionParameters": {
"lineBreakAfterOpeningBraces": true,
"lineBreakBeforeClosingBraces": true
},

"requirePaddingNewLinesBeforeExport": true,

"validateNewlineAfterArrayElements": {
"maximum": 1
},

"requirePaddingNewLinesAfterUseStrict": true
}

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -30,9 +30,9 @@
],
"dependencies": {},
"devDependencies": {
"tape": "^3.5.0",
"covert": "^1.0.1",
"jscs": "^1.11.3"
"tape": "^4.0.0",
"covert": "^1.1.0",
"jscs": "^1.13.1"
},
"testling": {
"files": "test.js",
Expand Down

0 comments on commit bd84112

Please sign in to comment.