aboutsummaryrefslogtreecommitdiffstats
path: root/configbackuprestore/vnfconfigbackupservice/src/main/webapp/node_modules/angular-object-diff/.jscsrc
blob: e91fa415015835716798ad887b3bec91f4e93e3a (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
41
42
43
44
45
46
47
48
49
50
51
52
{
  "requireCurlyBraces": [
    "try",
    "catch",
    "do"
  ],
  "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
  "requireCapitalizedConstructors": true,
  "validateIndentation": 2,
  "validateQuoteMarks": "'",

  "disallowQuotedKeysInObjects": true,
  "disallowSpaceAfterObjectKeys": true,

  "requireSpaceBeforeBinaryOperators": [
    "=", "+=", "-=", "*=", "/=", "%=", "<<=", ">>=", ">>>=",
    "&=", "|=", "^=", "+=",

    "+", "-", "*", "/", "%", "<<", ">>", ">>>", "&",
    "|", "^", "&&", "||", "===", "==", ">=",
    "<=", "<", ">", "!=", "!=="
  ],
  "requireSpaceAfterBinaryOperators": true,
  "requireSpacesInConditionalExpression": true,
  "requireSpaceBeforeBlockStatements": true,
  "requireSpacesInForStatement": true,
  "requireLineFeedAtFileEnd": true,
  "requireSpacesInFunctionExpression": {
    "beforeOpeningCurlyBrace": true
  },
  "requireDotNotation": true,
  "disallowSpacesInsideArrayBrackets": "all",
  "disallowSpacesInsideParentheses": true,


  "validateJSDoc": {
    "checkParamNames": true,
    "requireParamTypes": true
  },

  "disallowMultipleLineBreaks": true,
  "disallowNewlineBeforeBlockStatements": true,
  "disallowKeywords": [ "with" ],

  "excludeFiles": [
    "bower_components/**",
    "node_modules/**",
    "dist/**",
    "test/coverage/**",
    "examples/smoothscroll.min.js"
  ]
}