| OLD | NEW | 
| (Empty) |  | 
 |    1 /* | 
 |    2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 
 |    3  * Copyright (C) 2006-2017 Eyeo GmbH | 
 |    4  * | 
 |    5  * Adblock Plus is free software: you can redistribute it and/or modify | 
 |    6  * it under the terms of the GNU General Public License version 3 as | 
 |    7  * published by the Free Software Foundation. | 
 |    8  * | 
 |    9  * Adblock Plus is distributed in the hope that it will be useful, | 
 |   10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 |   11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 |   12  * GNU General Public License for more details. | 
 |   13  * | 
 |   14  * You should have received a copy of the GNU General Public License | 
 |   15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
 |   16  */ | 
 |   17  | 
 |   18 /* eslint-env commonjs */ | 
 |   19  | 
 |   20 "use strict"; | 
 |   21  | 
 |   22 module.exports = { | 
 |   23   extends: "eslint:recommended", | 
 |   24   env: { | 
 |   25     es6: true | 
 |   26   }, | 
 |   27   rules: { | 
 |   28     "array-bracket-spacing": "error", | 
 |   29     "arrow-spacing": "error", | 
 |   30     "block-scoped-var": "error", | 
 |   31     "block-spacing": "error", | 
 |   32     "brace-style": ["error", "allman", {allowSingleLine: true}], | 
 |   33     "camelcase": ["error", {properties: "never"}], | 
 |   34     "comma-dangle": "error", | 
 |   35     "comma-spacing": "error", | 
 |   36     "comma-style": "error", | 
 |   37     "computed-property-spacing": "error", | 
 |   38     "curly": ["error", "multi-or-nest", "consistent"], | 
 |   39     "eol-last": "error", | 
 |   40     "func-call-spacing": "error", | 
 |   41     "indent": ["error", 2, {SwitchCase: 1, ArrayExpression: "first"}], | 
 |   42     "key-spacing": "error", | 
 |   43     "keyword-spacing": "error", | 
 |   44     "linebreak-style": "error", | 
 |   45     "lines-around-directive": "error", | 
 |   46     "max-len": ["error", 80, {ignoreUrls: true}], | 
 |   47     "new-parens": "error", | 
 |   48     "no-array-constructor": "error", | 
 |   49     "no-caller": "error", | 
 |   50     "no-case-declarations": "off", | 
 |   51     "no-catch-shadow": "error", | 
 |   52     "no-cond-assign": "off", | 
 |   53     "no-console": ["error", {allow: ["warn", "error", "trace"]}], | 
 |   54     "no-control-regex": "off", | 
 |   55     "no-else-return": "error", | 
 |   56     "no-eval": "error", | 
 |   57     "no-extra-bind": "error", | 
 |   58     "no-extra-label": "error", | 
 |   59     "no-implied-eval": "error", | 
 |   60     "no-labels": ["error", {allowLoop: true}], | 
 |   61     "no-lone-blocks": "error", | 
 |   62     "no-lonely-if": "error", | 
 |   63     "no-multi-spaces": "error", | 
 |   64     "no-new-func": "error", | 
 |   65     "no-new-object": "error", | 
 |   66     "no-proto": "error", | 
 |   67     "no-self-compare": "error", | 
 |   68     "no-trailing-spaces": "error", | 
 |   69     "no-unneeded-ternary": "error", | 
 |   70     "no-unused-vars": "off", | 
 |   71     "no-useless-computed-key": "error", | 
 |   72     "no-useless-concat": "error", | 
 |   73     "no-useless-escape": "error", | 
 |   74     "no-useless-return": "error", | 
 |   75     "no-var": "error", | 
 |   76     "no-warning-comments": "error", | 
 |   77     "no-whitespace-before-property": "error", | 
 |   78     "no-with": "error", | 
 |   79     "object-curly-spacing": "error", | 
 |   80     "object-shorthand": ["error", "always", { | 
 |   81       avoidExplicitReturnArrows: true | 
 |   82     }], | 
 |   83     "one-var": ["error", "never"], | 
 |   84     "operator-assignment": "error", | 
 |   85     "operator-linebreak": "error", | 
 |   86     "padded-blocks": ["error", "never"], | 
 |   87     "prefer-arrow-callback": "error", | 
 |   88     "prefer-destructuring": ["error", {array: false}], | 
 |   89     "prefer-numeric-literals": "error", | 
 |   90     "prefer-rest-params": "error", | 
 |   91     "prefer-spread": "error", | 
 |   92     "quote-props": ["error", "consistent-as-needed"], | 
 |   93     "quotes": ["error", "double", {avoidEscape: true}], | 
 |   94     "radix": "error", | 
 |   95     "rest-spread-spacing": "error", | 
 |   96     "semi": "error", | 
 |   97     "semi-spacing": "error", | 
 |   98     "space-before-function-paren": ["error", "never"], | 
 |   99     "space-in-parens": "error", | 
 |  100     "space-infix-ops": "error", | 
 |  101     "space-unary-ops": "error", | 
 |  102     "spaced-comment": "error", | 
 |  103     "strict": ["error", "global"], | 
 |  104     "valid-jsdoc": ["error", { | 
 |  105       requireParamDescription: false, | 
 |  106       requireReturn: false, | 
 |  107       requireReturnDescription: false | 
 |  108     }], | 
 |  109     "yield-star-spacing": "error", | 
 |  110     "yoda": "error" | 
 |  111   } | 
 |  112 }; | 
| OLD | NEW |