diff options
author | Mike Grundy <michael.grundy@10gen.com> | 2016-02-10 16:11:11 -0500 |
---|---|---|
committer | Mike Grundy <michael.grundy@10gen.com> | 2016-02-10 17:31:58 -0500 |
commit | c3b777da1c2cfbc1badbb7b226f2ec6d4f326b05 (patch) | |
tree | 09507cb870f83d5de24e1d355df0a3f0f238c1a1 /.eslintrc.yml | |
parent | cfac7b582eaa5539dc05590ec5d974d732d404d2 (diff) | |
download | mongo-c3b777da1c2cfbc1badbb7b226f2ec6d4f326b05.tar.gz |
SERVER-22546 Enable more ESLint rules
Diffstat (limited to '.eslintrc.yml')
-rw-r--r-- | .eslintrc.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml index b8caee7a449..93b85c8b62e 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -3,5 +3,38 @@ env: mongo: true rules: + # Rules are documented at http://eslint.org/docs/rules/ + no-cond-assign: 2 + no-console: 2 + no-control-regex: 2 + no-debugger: 2 + no-div-regex: 2 + no-dupe-args: 2 + no-dupe-keys: 2 + no-duplicate-case: 2 + no-empty-character-class: 2 + no-empty-label: 2 + no-empty-pattern: 2 + no-ex-assign: 2 + no-extra-boolean-cast: 2 no-extra-semi: 2 + no-fallthrough: 2 + no-func-assign: 2 + no-invalid-regexp: 2 + no-negated-in-lhs: 2 + no-obj-calls: 2 + no-octal-escape: 2 + no-octal: 2 + no-regex-spaces: 2 + no-return-assign: 2 + no-script-url: 2 + no-self-compare: 2 + no-sequences: 2 + no-sparse-arrays: 2 + no-unexpected-multiline: 2 + no-unreachable: 2 + no-useless-call: 2 + no-with: 2 semi: 2 + use-isnan: 2 + valid-typeof: 2 |