UNPKG

gulp-clean-dir

Version:
131 lines 3.71 kB
{ "parserOptions": { "ecmaVersion": 9, "sourceType": "module" }, "env": { "es6": true, "node": true, "browser": true }, "rules": { "complexity": [ "warn", { "max": 10 } ], "curly": [ "off", "multi-line" ], "default-case": "warn", "dot-notation": "warn", "eqeqeq": [ "warn", "smart" ], "guard-for-in": "warn", "no-alert": "error", "no-caller": "error", "no-case-declarations": "error", "no-div-regex": "error", "no-else-return": "error", "no-empty-pattern": "error", "no-eq-null": 0, "no-eval": "error", "no-extend-native": "error", "no-extra-bind": "error", "no-extra-label": "warn", "no-fallthrough": "warn", "no-floating-decimal": "warn", "no-global-assign": "error", "no-implicit-globals": "warn", "no-implied-eval": "error", "no-invalid-this": "error", "no-iterator": "error", "no-labels": "error", "no-lone-blocks": "error", "no-loop-func": "error", "no-magic-numbers": "off", "no-multi-spaces": "off", "no-multi-str": "error", "no-native-reassign": "error", "no-new": "error", "no-new-func": "error", "no-new-wrappers": "error", "no-octal": "warn", "no-octal-escape": "warn", "no-param-reassign": "off", "no-process-env": "off", "no-proto": "error", "no-redeclare": "error", "no-return-assign": "warn", "no-script-url": "error", "no-self-compare": "error", "no-sequences": "error", "no-throw-literal": "error", "no-unused-expressions": "error", "no-unused-labels": "error", "no-useless-call": "error", "no-useless-concat": "error", "no-void": "error", "no-with": "error", "prefer-promise-reject-errors": "warn", "radix": "error", "wrap-iife": "error", "yoda": [ "error", "never", { "onlyEquality": true } ], "comma-dangle": "error", "no-cond-assign": "error", "no-console": "off", "no-constant-condition": "error", "no-control-regex": "error", "no-debugger": "error", "no-dupe-args": "error", "no-dupe-keys": "error", "no-duplicate-case": "error", "no-empty": "error", "no-empty-character-class": "error", "no-ex-assign": "error", "no-extra-boolean-cast": "error", "no-extra-parens": "off", "no-extra-semi": "error", "no-func-assign": "error", "no-inner-declarations": "error", "no-invalid-regexp": "error", "no-irregular-whitespace": "error", "no-obj-calls": "error", "no-regex-spaces": "error", "no-sparse-arrays": "error", "no-template-curly-in-string": "error", "no-unexpected-multiline": "error", "no-unreachable": "error", "no-unsafe-finally": "error", "no-unsafe-negation": "error", "use-isnan": "error", "valid-jsdoc": "warn", "valid-typeof": "error", "strict": "off", "no-catch-shadow": "error", "no-delete-var": "error", "no-label-var": "error", "no-shadow": "error", "no-shadow-restricted-names": "warn", "no-undef": "error", "no-undef-init": "error", "no-undefined": "off", "no-unused-vars": "warn", "no-use-before-define": [ "error", { "functions": false } ] } }