aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/.jscs.json
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-11-18 23:58:47 +0100
committerMario Vavti <mario@mariovavti.com>2015-11-18 23:58:47 +0100
commitdb9c2992e3102323b7500213c1ddea3b8611e1f0 (patch)
treea061b4cd2abda66cdb8018330fcca2acd4c06093 /library/moment/.jscs.json
parentb23284cba28335f61595f2264685b1bbafc19183 (diff)
downloadvolse-hubzilla-db9c2992e3102323b7500213c1ddea3b8611e1f0.tar.gz
volse-hubzilla-db9c2992e3102323b7500213c1ddea3b8611e1f0.tar.bz2
volse-hubzilla-db9c2992e3102323b7500213c1ddea3b8611e1f0.zip
remove more unneeded files
Diffstat (limited to 'library/moment/.jscs.json')
-rw-r--r--library/moment/.jscs.json67
1 files changed, 0 insertions, 67 deletions
diff --git a/library/moment/.jscs.json b/library/moment/.jscs.json
deleted file mode 100644
index 72747b5f4..000000000
--- a/library/moment/.jscs.json
+++ /dev/null
@@ -1,67 +0,0 @@
-{
- "requireCurlyBraces": [
- "if",
- "else",
- "for",
- "while",
- "do",
- "try",
- "catch"
- ],
- "requireSpaceAfterKeywords": [
- "if",
- "else",
- "for",
- "while",
- "do",
- "switch",
- "return",
- "try",
- "catch"
- ],
- "requireSpaceBeforeBlockStatements": true,
- "requireParenthesesAroundIIFE": true,
- "requireSpacesInConditionalExpression": true,
- "requireSpacesInAnonymousFunctionExpression": {
- "beforeOpeningRoundBrace": true,
- "beforeOpeningCurlyBrace": true
- },
- "requireSpacesInNamedFunctionExpression": {
- "beforeOpeningCurlyBrace": true
- },
- "disallowSpacesInNamedFunctionExpression": {
- "beforeOpeningRoundBrace": true
- },
- "requireBlocksOnNewline": true,
- "disallowPaddingNewlinesInBlocks": true,
- "disallowEmptyBlocks": true,
- "disallowSpacesInsideObjectBrackets": true,
- "disallowSpacesInsideArrayBrackets": true,
- "disallowSpacesInsideParentheses": true,
- "requireCommaBeforeLineBreak": true,
- "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
- "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
- "requireSpaceBeforeBinaryOperators": [
- "=", "+=", "-=", "*=", "/=", "%=", "<<=", ">>=", ">>>=",
- "&=", "|=", "^=",
-
- "+", "-", "*", "/", "%", "<<", ">>", ">>>", "&",
- "|", "^", "&&", "||", "===", "==", ">=",
- "<=", "<", ">", "!=", "!=="
- ],
- "requireSpaceAfterBinaryOperators": true,
- "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
- "disallowKeywords": ["with"],
- "disallowMultipleLineStrings": true,
- "validateLineBreaks": "LF",
- "validateIndentation": 4,
- "disallowTrailingWhitespace": true,
- "disallowTrailingComma": true,
- "requireLineFeedAtFileEnd": true,
- "requireCapitalizedConstructors": true,
- "validateQuoteMarks": {
- "mark": "'",
- "escape": true
- },
- "esnext": true
-}