eslint-config-cappuccino
Version:
Shareable config that provides Cappuccino style rules for eslint
262 lines (255 loc) • 8.92 kB
JSON
{
"env": {
"es6": true,
"node": true
},
"rules": {
//
// Possible errors
//
"comma-dangle": "off",
"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", "functions"],
"no-invalid-regexp": "error",
"no-irregular-whitespace": "error",
"no-negated-in-lhs": "error",
"no-obj-calls": "error",
"no-regex-spaces": "error",
"no-sparse-arrays": "error",
"no-unexpected-multiline": "error",
"no-unreachable": "error",
"use-isnan": "error",
"valid-jsdoc": "error",
"valid-typeof": "error",
//
// Best practices
//
"accessor-pairs": "error",
"array-callback-return": "error",
"block-scoped-var": "error",
"complexity": "off",
"consistent-return": "error",
// Only a warning because there can be exceptions for readability,
// especially if there are multiple if/else if statements in a row.
"curly": ["warn", "multi-or-nest"],
"default-case": "error",
"dot-notation": "error",
"dot-location": "off",
"eqeqeq": ["error", "allow-null"],
"guard-for-in": "off",
"no-alert": "error",
"no-caller": "error",
"no-case-declarations": "error",
"no-div-regex": "off",
"no-else-return": "error",
"no-empty-function": "off",
"no-empty-pattern": "error",
"no-eq-null": "off",
"no-eval": "error",
"no-extend-native": "off",
"no-extra-bind": "error",
"no-extra-label": "error",
"no-fallthrough": "error",
"no-floating-decimal": "error",
"no-implicit-coercion": "off",
"no-implicit-globals": "off",
"no-implied-eval": "error",
"no-invalid-this": "error",
"no-iterator": "error",
"no-labels": "off",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-magic-numbers": "off",
"no-multi-spaces": "error",
"no-multi-str": "error",
"no-native-reassign": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-wrappers": "error",
"no-octal": "error",
"no-octal-escape": "error",
"no-param-reassign": "off",
"no-process-env": "off",
"no-proto": "error",
"no-redeclare": "error",
"no-return-assign": "error",
"no-script-url": "error",
"no-self-assign": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unmodified-loop-condition": "error",
"no-unused-expressions": "error",
"no-unused-labels": "error",
"no-useless-call": "error",
"no-useless-concat": "error",
"no-void": "error",
"no-warning-comments": [
"warn",
{
"terms": [
"todo",
"fixme",
"xxx"
],
"location": "start"
}
],
"no-with": "error",
"radix": "off",
"vars-on-top": "off",
"wrap-iife": ["error", "inside"],
"yoda": "error",
//
// Strict mode
//
"strict": ["error", "global"],
//
// Variables
//
"init-declarations": "off",
"no-catch-shadow": "error",
"no-delete-var": "error",
"no-label-var": "error",
"no-restricted-globals": "off",
"no-shadow": "error",
"no-shadow-restricted-names": "error",
"no-undef": "error",
"no-undef-init": "error",
"no-undefined": "off",
"no-unused-vars": ["error", { "vars": "all", "args": "after-used" }],
"no-use-before-define": ["error", "nofunc"],
//
// Node.js and CommonJS
//
"callback-return": "error",
"global-require": "off",
"handle-callback-err": "error",
"no-mixed-requires": ["error", false],
"no-new-require": "error",
"no-path-concat": "off",
"no-process-exit": "off",
"no-restricted-imports": "off",
"no-restricted-modules": "off",
"no-sync": "off",
//
// Stylistic issues
//
"array-bracket-spacing": ["error", "never"],
"block-spacing": ["error", "always"],
"brace-style": ["error", "allman", { "allowSingleLine": true }],
"camelcase": "off",
"comma-spacing": ["error", { "before": false, "after": true }],
"comma-style": ["error", "last"],
"computed-property-spacing": ["error", "never"],
"consistent-this": "off",
"eol-last": "error",
"func-names": "off",
"func-style": "off",
"id-blacklist": "off",
"id-length": "off",
"id-match": "off",
"indent": ["error", 4, { "SwitchCase": 1 }],
"jsx-quotes": "off",
"key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
"keyword-spacing": "error",
"linebreak-style": ["error", "unix"],
"lines-around-comment": [
"error",
{
"beforeBlockComment": true,
"allowArrayStart": true,
"allowBlockStart": true,
"allowObjectStart": true
}
],
"max-depth": ["error", 4],
"max-len": ["error", { "code": 130, "tabWidth": 4 }],
"max-nested-callbacks": ["error", 3],
"max-params": "off",
"max-statements": "off",
"new-cap": "error",
"new-parens": "error",
"newline-after-var": "error",
"newline-before-return": "error",
"newline-per-chained-call": "off",
"no-array-constructor": "error",
"no-bitwise": "off",
"no-continue": "off",
"no-inline-comments": "off",
"no-lonely-if": "error",
"no-mixed-spaces-and-tabs": "error",
"no-multiple-empty-lines": ["error", { "max": 2 }],
"no-negated-condition": "off",
"no-nested-ternary": "error",
"no-new-object": "error",
"no-plus-plus": "off",
"no-restricted-syntax": "off",
"no-spaced-func": "error",
"no-ternary": "off",
"no-trailing-spaces": "off",
"no-underscore-dangle": "off",
"no-unneeded-ternary": "error",
"no-whitespace-before-property": "error",
"object-curly-spacing": ["error", "always", { "objectsInObjects": false }],
"one-var": "off",
"one-var-declaration-per-line": ["error", "always"],
"operator-assignment": ["error", "always"],
"operator-linebreak": ["error", "after"],
"padded-blocks": ["error", "never"],
"quote-props": ["error", "as-needed"],
"quotes": ["error", "double"],
"require-jsdoc": "off",
"semi": "error",
"semi-spacing": ["error", { "before": false, "after": true }],
"sort-imports": "off",
"sort-vars": "off",
"space-before-blocks": "error",
"space-before-function-paren": ["error", "never"],
"space-in-parens": ["error", "never"],
"space-infix-ops": "error",
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
"spaced-comment": ["error", "always", { "exceptions": ["-"] }],
"wrap-regex": "off",
//
// ES6
//
"arrow-body-style": ["error", "as-needed"],
"array-parens": "off",
"arrow-spacing": "error",
"constructor-super": "error",
"generator-star-spacing": ["error", { "before": true, "after": false }],
"no-class-assign": "error",
"no-confusing-arrow": "error",
"no-const-assign": "error",
"no-dupe-class-members": "error",
"no-new-symbol": "error",
"no-this-before-super": "error",
"no-useless-constructor": "error",
"no-var": "error",
"object-shorthand": "error",
"prefer-arrow-callback": "error",
"prefer-const": "off",
"prefer-reflect": "off",
"prefer-rest-params": "off",
"prefer-spread": "error",
"prefer-template": "off",
"template-curly-spacing": "off",
"require-yield": "error",
"yield-star-spacing": ["error", "before"]
}
}