uint32
Version: 
a javascript library for dealing with (bitwise) uint32 operations
19 lines • 901 B
JSON
{
    "requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
    "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
    "disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
    "disallowRightStickedOperators": ["?", "+", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
    "requireRightStickedOperators": ["!"],
    "requireLeftStickedOperators": [","],
    "disallowImplicitTypeConversion": ["string"],
    "disallowKeywords": ["with"],
    "disallowMultipleLineBreaks": true,
    "disallowKeywordsOnNewLine": [""],
    "disallowTrailingWhitespace": true,
    "requireLineFeedAtFileEnd": true,
    "excludeFiles": ["test/data/**"],
    "validateJSDoc": {
        "checkParamNames": true,
        "requireParamTypes": true
    }
}