summaryrefslogtreecommitdiff
path: root/.eslintrc.yml
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-10 16:11:11 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-18 14:15:27 -0500
commit3e0a5f24bf547e792436e693631d587aed044b41 (patch)
tree87c80f589fcab1062dc5a08c7e7568796022ca8e /.eslintrc.yml
parent45f46efd5632714ae207ec8ff07cd8ca27c1a6f8 (diff)
downloadmongo-3e0a5f24bf547e792436e693631d587aed044b41.tar.gz
SERVER-22546 Enable more ESLint rules
(cherry picked from commit c3b777da1c2cfbc1badbb7b226f2ec6d4f326b05)
Diffstat (limited to '.eslintrc.yml')
-rw-r--r--.eslintrc.yml33
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