removed duplicate rules draft
authorHemant Singh Patwal <hemantsingh1612@gmail.com>
Mon, 24 Apr 2017 03:08:05 +0530
changeset 566825 0e151ea64c73d51735e1d1cda47f6ab2b450918f
parent 558889 ea39df3abfca9d4ed564fc388c9bb33bf6290a33
child 567272 815ea4da96a65b7e91827631eca364f2727699ac
push id55347
push userbmo:hemantsingh1612@gmail.com
push dateSun, 23 Apr 2017 21:37:56 +0000
milestone55.0a1
removed duplicate rules MozReview-Commit-ID: Hk2lpk0hyLb
toolkit/components/narrate/.eslintrc.js
--- a/toolkit/components/narrate/.eslintrc.js
+++ b/toolkit/components/narrate/.eslintrc.js
@@ -1,94 +1,52 @@
 "use strict";
 
 module.exports = {
-  "extends": [
-    "../../.eslintrc.js"
-  ],
-
   "globals": {
     "Components": true,
     "dump": true,
     "Iterator": true
   },
 
-  "env": { "browser": true },
-
   "rules": {
-    // Mozilla stuff
     "mozilla/no-aArgs": "warn",
     "mozilla/reject-importGlobalProperties": "warn",
     "mozilla/var-only-at-top-level": "warn",
-
     "block-scoped-var": "error",
     "brace-style": ["warn", "1tbs", {"allowSingleLine": false}],
     "camelcase": "warn",
     "comma-dangle": "off",
-    "comma-spacing": ["warn", {"before": false, "after": true}],
     "comma-style": ["warn", "last"],
     "complexity": ["error", {"max": 20}],
-    "consistent-return": "error",
     "curly": "error",
     "dot-location": ["warn", "property"],
     "dot-notation": "error",
-    "eol-last": "error",
     "generator-star-spacing": ["warn", "after"],
-    "indent": ["warn", 2, {"SwitchCase": 1}],
     "key-spacing": ["warn", {"beforeColon": false, "afterColon": true}],
-    "keyword-spacing": "warn",
     "max-len": ["warn", 80, 2, {"ignoreUrls": true}],
     "max-nested-callbacks": ["error", 3],
     "new-cap": ["error", {"capIsNew": false}],
-    "new-parens": "error",
-    "no-array-constructor": "error",
-    "no-cond-assign": "error",
     "no-control-regex": "error",
-    "no-debugger": "error",
-    "no-delete-var": "error",
-    "no-dupe-args": "error",
-    "no-dupe-keys": "error",
-    "no-duplicate-case": "error",
-    "no-else-return": "error",
     "no-eval": "error",
     "no-extend-native": "error",
-    "no-extra-bind": "error",
-    "no-extra-boolean-cast": "error",
-    "no-extra-semi": "warn",
     "no-fallthrough": "error",
     "no-inline-comments": "warn",
-    "no-lonely-if": "error",
     "no-mixed-spaces-and-tabs": "error",
     "no-multi-spaces": "warn",
     "no-multi-str": "warn",
     "no-multiple-empty-lines": ["warn", {"max": 1}],
-    "no-native-reassign": "error",
-    "no-nested-ternary": "error",
-    "no-redeclare": "error",
     "no-return-assign": "error",
-    "no-self-compare": "error",
-    "no-sequences": "error",
-    "no-shadow": "warn",
-    "no-shadow-restricted-names": "error",
+    "no-sequences": "error",    
     "no-spaced-func": "warn",
     "no-throw-literal": "error",
-    "no-trailing-spaces": "error",
-    "no-undef": "error",
     "no-unneeded-ternary": "error",
-    "no-unreachable": "error",
     "no-unused-vars": "error",
-    "no-with": "error",
     "padded-blocks": ["warn", "never"],
     "quotes": ["warn", "double", "avoid-escape"],
-    "semi": ["warn", "always"],
     "semi-spacing": ["warn", {"before": false, "after": true}],
     "space-before-blocks": ["warn", "always"],
-    "space-before-function-paren": ["warn", "never"],
-    "space-in-parens": ["warn", "never"],
-    "space-infix-ops": ["warn", {"int32Hint": true}],
     "space-unary-ops": ["warn", { "words": true, "nonwords": false }],
     "spaced-comment": ["warn", "always"],
     "strict": ["error", "global"],
-    "use-isnan": "error",
-    "valid-typeof": "error",
     "yoda": "error"
   }
 };