jsBoot/gulp-jsdoc

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
  "rules": {

    "block-scoped-var": 0,


    "brace-style": 1,


    "camelcase": 1,

    "complexity": [1, 20],

    "consistent-this": [1, "this"],


    "curly": 0,

    "dot-notation": 1,

    "eqeqeq": [1, "smart"],



    "guard-for-in": 1,

    "max-depth": [1, 4],

    "max-len": [1, 120, 2],



    "max-params": [1, 6],

    "max-statements": [1, 40],

    "new-cap": 1,

    "new-parens": 2,

    "no-alert": 2,

    "no-bitwise": 0,

    "no-caller": 2,

    "no-catch-shadow": 2,

    "no-comma-dangle": 2,

    "no-cond-assign": 2,

    "no-console": 2,

    "no-control-regex": 0,

    "no-debugger": 2,

    "no-delete-var": 2,

    "no-div-regex": 1,
    "no-dupe-keys": 2,
    "no-else-return": 1,
    "no-empty-class": 2,

    "no-empty-label": 2,
    "no-empty": 1,
    "no-eq-null": 1,
    "no-eval": 2,

    "no-ex-assign": 2,

    "no-extend-native": 2,
    "no-extra-parens": 1,
    "no-extra-semi": 1,

    "no-fallthrough": 1,
    "no-floating-decimal": 1,
    "no-func-assign": 2,
    "no-global-strict": 1,
    "no-implied-eval": 2,
    "no-invalid-regexp": 2,
    "no-iterator": 2,
    "no-label-var": 2,
    "no-loop-func": 1,

    "no-mixed-requires": 1,
    "no-multi-str": 1,
    "no-native-reassign": 2,
    "no-negated-in-lhs": 2,

    "no-array-constructor": 2,
    "no-new-func": 2,
    "no-new-object": 2,
    "no-new-wrappers": 2,
    "no-new": 2,
    "no-obj-calls": 2,
    "no-octal-escape": 2,
    "no-octal": 1,
    "no-plusplus": 0,
    "no-proto": 2,
    "no-redeclare": 1,
    "no-return-assign": 1,
    "no-script-url": 2,
    "no-self-compare": 2,
    "no-shadow-restricted-names": 2,
    "no-shadow": 2,
    "no-spaced-func": 1,
    "no-sync": 1,
    "no-ternary": 0,
    "no-undef-init": 1,
    "no-undef": 2,
    "no-underscore-dangle": 1,
    "no-unreachable": 1,
    "no-unused-expressions": 1,
    "no-unused-vars": 1,
    "no-use-before-define": 2,
    "no-with": 2,
    "no-wrap-func": 1,
    "one-var": 0,

    "quote-props": 0,
    "quotes": [2, "single"],
    "radix": 1,
    "no-regex-spaces": 1,
    "semi": 1,


    "space-return-throw-case": 1,
    "space-unary-word-ops": 1,
    "strict": 2,
    "use-isnan": 1,
    "wrap-iife": 1,
    "wrap-regex": 0
  },
  "globals": {
  },
  "env":{
    "node": true
  }
}