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

.jscsrc - github.com/twbs/mq4-hover-shim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eed4373cf141b671d4f5d3bb77fc989bc6e42d11 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  "disallowEmptyBlocks": true,
  "disallowKeywords": ["with"],
  "disallowMixedSpacesAndTabs": true,
  "disallowMultipleLineStrings": true,
  "disallowMultipleVarDecl": true,
  "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
  "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
  "disallowSpacesInCallExpression": true,
  "disallowSpacesInsideBrackets": true,
  "disallowTrailingWhitespace": true,
  "esnext": true,
  "requireCapitalizedConstructors": true,
  "requireCommaBeforeLineBreak": true,
  "requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch", "case", "default"],
  "requireLineFeedAtFileEnd": true,
  "requireOperatorBeforeLineBreak": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
  "requireParenthesesAroundIIFE": true,
  "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
  "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
  "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
  "requireSpacesInConditionalExpression": true,
  "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
  "requireSpacesInForStatement": true,
  "validateIndentation": 4,
  "validateLineBreaks": "LF",
  "validateParameterSeparator": ", ",
  "plugins": [
    "jscs-jsdoc"
  ],
  "jsDoc": {
    "checkAnnotations": {
      "preset": "jsdoc3",
      "extra": {"class": false}
    },
    "checkParamNames": true,
    "checkRedundantParams": true,
    "requireParamTypes": true
  }
}