Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
htmlparser2 / .jscsrc
Size: Mime:
{
    "requireCurlyBraces": ["do", "switch", "return", "try", "catch"],
    "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
    "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
    "requireSpaceAfterKeywords": ["else", "do", "switch", "return", "try"],
    "disallowSpaceAfterKeywords": ["if", "catch", "for", "while"],
    "disallowSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },

    "requireCapitalizedConstructors": true,
    "requireCommaBeforeLineBreak": true,
    "requireDotNotation": true,
    "requireParenthesesAroundIIFE": true,

    "disallowEmptyBlocks": true,

    "disallowSpaceAfterPrefixUnaryOperators": ["!"],
    "disallowSpaceBeforeBinaryOperators": [","],
    "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
    "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],

    "disallowKeywords": ["with"],
    "disallowMultipleLineStrings": true,
    "disallowTrailingWhitespace": true,

    "validateIndentation": "\t",
    "validateLineBreaks": "LF",
    "validateQuoteMarks": "\"",

    "safeContextKeyword": "_this"
}