Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.jscsrc - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 076dcb857d51a4fd19e17c772ae31770f4f9683d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
    "preset": "google",
    "fileExtensions": [".js", "jscs"],

    "requireParenthesesAroundIIFE": true,
    "disallowMultipleVarDecl": "strict",
    "maximumLineLength": 120,
    "validateLineBreaks": "LF",
    "validateIndentation": "\t",

    "disallowKeywords": ["with"],
    "disallowSpacesInsideObjectBrackets": null,
    "disallowImplicitTypeConversion": ["string"],
    "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
    "safeContextKeyword": "_this",

    "excludeFiles": [
        "node_modules/",
        "vendor/",
        ".git/",
        "l10n/",
        "js/vendor/"
    ]

}