Rev 915 | Blame | Compare with Previous | Last modification | View Log | RSS feed
ecmaFeatures:modules: truejsx: trueenv:amd: truebrowser: truees6: truejquery: truenode: true# http://eslint.org/docs/rules/rules:# Possible Errorsno-cond-assign: 2no-console: [2, {allow: [warn, error]}]no-constant-condition: 2no-control-regex: 2no-debugger: 2no-dupe-args: 2no-dupe-keys: 2no-duplicate-case: 2no-empty: 2no-empty-character-class: 2no-ex-assign: 2no-extra-boolean-cast: 2no-extra-parens: [2, functions]no-extra-semi: 2no-func-assign: 2no-inner-declarations: [2, functions]no-invalid-regexp: 2no-irregular-whitespace: 2no-negated-in-lhs: 2no-obj-calls: 2no-regex-spaces: 2no-sparse-arrays: 2no-unexpected-multiline: 2no-unreachable: 2use-isnan: 2valid-jsdoc: 0valid-typeof: 2# Best Practicesaccessor-pairs: 2array-callback-return: 0block-scoped-var: 0complexity: [2, 10]consistent-return: 0curly: [2, all]default-case: 2dot-location: 0dot-notation: 2eqeqeq: 2guard-for-in: 2no-alert: 2no-caller: 2no-case-declarations: 2no-div-regex: 2no-else-return: 2no-empty-pattern: 2no-eq-null: 2no-eval: 2no-extend-native: 2no-extra-bind: 2no-fallthrough: 2no-floating-decimal: 2no-implicit-coercion: 0no-implied-eval: 2no-invalid-this: 0no-iterator: 2no-labels: 2no-lone-blocks: 2no-loop-func: 2no-magic-number: 0no-multi-spaces: 2no-multi-str: 2no-native-reassign: 2no-new-func: 2no-new-wrappers: 2no-new: 2no-octal-escape: 2no-octal: 2no-proto: 2no-redeclare: 2no-return-assign: 2no-script-url: 2no-self-compare: 2no-sequences: 2no-throw-literal: 0no-unused-expressions: 2no-useless-call: 2no-useless-concat: 2no-void: 2no-warning-comments: 0no-with: 2radix: 2vars-on-top: 0wrap-iife: 2yoda: [1, never]# Strictstrict: 0# Variablesinit-declarations: 0no-catch-shadow: 2no-delete-var: 2no-label-var: 2no-shadow-restricted-names: 2no-shadow: 2no-undef-init: 2no-undef: 2no-undefined: 0no-unused-vars: 2no-use-before-define: 2# Node.js and CommonJScallback-return: 2global-require: 2handle-callback-err: 2no-mixed-requires: 0no-new-require: 0no-path-concat: 2no-process-exit: 2no-restricted-modules: 0no-sync: 0# Stylistic Issuesarray-bracket-spacing: [2, never]block-spacing: 0brace-style: [2, 1tbs]camelcase: 2comma-dangle: [2, only-multiline]comma-spacing: 2comma-style: [2, last]computed-property-spacing: [2, never]consistent-this: [2, me]eol-last: 2func-call-spacing: 0func-names: [2, never]func-style: 0id-length: 0id-match: 0indent: [2, tab]jsx-quotes: 0key-spacing: 2keyword-spacing: 2linebreak-style: 0lines-around-comment: 0max-depth: 0max-len: 0max-lines: 0max-nested-callbacks: 0max-params: 0max-statements-per-line: 0max-statements: [2, 30]multiline-ternary: 0new-cap: 0new-parens: 2newline-after-var: 0newline-before-return: 0newline-per-chained-call: 0no-array-constructor: 0no-bitwise: 0no-continue: 0no-inline-comments: 0no-lonely-if: 2no-mixed-operators: 0no-mixed-spaces-and-tabs: 2no-multiple-empty-lines: [2, {max: 2}]no-negated-condition: 0no-nested-ternary: 0no-new-object: 0no-plusplus: 0no-restricted-syntax: 0no-spaced-func: 0no-ternary: 0no-trailing-spaces: 2no-underscore-dangle: 0no-unneeded-ternary: 0no-whitespace-before-property: 2object-curly-newline: 0object-curly-spacing: [2, never]object-property-newline: 0one-var-declaration-per-line: 2one-var: [2, {initialized: never}]operator-assignment: 0operator-linebreak: 0padded-blocks: 0quote-props: [2, as-needed]quotes: [2, single, {avoidEscape: true}]require-jsdoc: 0semi-spacing: 2semi: [2, always]sort-keys: 0sort-vars: 0space-before-blocks: [2, always]space-before-function-paren: [2, never]space-in-parens: [2, never]space-infix-ops: 2space-unary-ops: [2, {words: true, nonwords: false}]spaced-comment: [2, always]unicode-bom: 0wrap-regex: 2# ECMAScript 6arrow-body-style: 0arrow-parens: 0arrow-spacing: 0constructor-super: 0generator-star-spacing: 0no-arrow-condition: 0no-class-assign: 0no-const-assign: 0no-dupe-class-members: 0no-this-before-super: 0no-var: 0object-shorthand: 0prefer-arrow-callback: 0prefer-const: 0prefer-reflect: 0prefer-spread: 0prefer-template: 0require-yield: 0