twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

.eslintrc (647B)


      1 {
      2     "root": true,
      3 
      4     "extends": "@ljharb",
      5 
      6     "rules": {
      7         "complexity": 0,
      8         "consistent-return": 1,
      9 		"func-name-matching": 0,
     10         "id-length": [2, { "min": 1, "max": 25, "properties": "never" }],
     11         "indent": [2, 4],
     12         "max-lines-per-function": [2, { "max": 150 }],
     13         "max-params": [2, 14],
     14         "max-statements": [2, 52],
     15         "multiline-comment-style": 0,
     16         "no-continue": 1,
     17         "no-magic-numbers": 0,
     18         "no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"],
     19         "operator-linebreak": [2, "before"],
     20     }
     21 }