twitst4tz

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

.eslintrc (397B)


      1 {
      2 	"root": true,
      3 
      4 	"extends": "@ljharb",
      5 
      6 	"rules": {
      7 		"complexity": [2, 20],
      8 		"eqeqeq": [2, "allow-null"],
      9 		"func-name-matching": [1],
     10 		"max-depth": [1, 4],
     11 		"max-statements": [2, 26],
     12 		"no-extra-parens": [1],
     13 		"no-magic-numbers": [0],
     14 		"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
     15 		"sort-keys": [0],
     16 	}
     17 }