Tidied the directories and some files.

This commit is contained in:
Martin Donnelly 2016-04-15 15:03:55 +01:00
parent c2775fd9a8
commit 17c7baf663
7 changed files with 52 additions and 1 deletions

2
.gitignore vendored
View File

@ -188,3 +188,5 @@ node_modules
/libpeerconnection.log
npm-debug.log
testem.log
/.cache
/.gradle

View File

@ -188,3 +188,5 @@ node_modules
/libpeerconnection.log
npm-debug.log
testem.log
/.cache
/.gradle

46
dev_dotfiles/.jscsrc Normal file
View File

@ -0,0 +1,46 @@
{
"disallowKeywords": ["with"],
"disallowKeywordsOnNewLine": ["else"],
"disallowMixedSpacesAndTabs": true,
"disallowMultipleVarDecl": "exceptUndefined",
"disallowNewlineBeforeBlockStatements": true,
"disallowQuotedKeysInObjects": true,
"disallowSpaceAfterObjectKeys": true,
"disallowSpaceAfterPrefixUnaryOperators": true,
"disallowSpacesInFunction": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInsideParentheses": true,
"disallowTrailingWhitespace": true,
"maximumLineLength": 120,
"requireCamelCaseOrUpperCaseIdentifiers": false,
"requireCapitalizedComments": true,
"requireCapitalizedConstructors": true,
"requireCurlyBraces": true,
"requireSpaceAfterKeywords": [
"if",
"else",
"for",
"while",
"do",
"switch",
"case",
"return",
"try",
"catch",
"typeof"
],
"requireSpaceAfterLineComment": true,
"requireSpaceAfterBinaryOperators": true,
"requireSpaceBeforeBinaryOperators": true,
"requireSpaceBeforeBlockStatements": true,
"requireSpaceBeforeObjectValues": true,
"requireSpacesInFunction": {
"beforeOpeningCurlyBrace": true
},
"requireTrailingComma": false,
"requireEarlyReturn": true,
"validateIndentation": 2,
"validateLineBreaks": "LF",
"validateQuoteMarks": "'"
}

View File

@ -5,7 +5,8 @@
"window",
"-Promise"
],
"browser": true,
"node": true,
"browser": false,
"boss": true,
"curly": true,
"debug": false,