Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2017 Eyeo GmbH | 3 * Copyright (C) 2006-2017 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 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 | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 "keyword-spacing": "error", | 43 "keyword-spacing": "error", |
44 "linebreak-style": "error", | 44 "linebreak-style": "error", |
45 "lines-around-directive": "error", | 45 "lines-around-directive": "error", |
46 "max-len": ["error", 80, {ignoreUrls: true}], | 46 "max-len": ["error", 80, {ignoreUrls: true}], |
47 "new-parens": "error", | 47 "new-parens": "error", |
48 "no-array-constructor": "error", | 48 "no-array-constructor": "error", |
49 "no-caller": "error", | 49 "no-caller": "error", |
50 "no-case-declarations": "off", | 50 "no-case-declarations": "off", |
51 "no-catch-shadow": "error", | 51 "no-catch-shadow": "error", |
52 "no-cond-assign": "off", | 52 "no-cond-assign": "off", |
53 "no-console": ["error", {allow: ["warn", "error", "trace"]}], | 53 "no-console": ["error", {allow: ["warn", "error", "trace"]}], |
Sebastian Noack
2017/02/15 10:35:24
We discussed that before, but I just noticed that
kzar
2017/02/15 11:45:20
console.trace is used here: https://github.com/adb
Sebastian Noack
2017/02/15 11:58:05
Acknowledged.
| |
54 "no-control-regex": "off", | 54 "no-control-regex": "off", |
55 "no-else-return": "error", | 55 "no-else-return": "error", |
56 "no-empty": ["error", {allowEmptyCatch: true}], | |
56 "no-eval": "error", | 57 "no-eval": "error", |
57 "no-extra-bind": "error", | 58 "no-extra-bind": "error", |
58 "no-extra-label": "error", | 59 "no-extra-label": "error", |
59 "no-implied-eval": "error", | 60 "no-implied-eval": "error", |
60 "no-labels": ["error", {allowLoop: true}], | 61 "no-labels": ["error", {allowLoop: true}], |
61 "no-lone-blocks": "error", | 62 "no-lone-blocks": "error", |
62 "no-lonely-if": "error", | 63 "no-lonely-if": "error", |
63 "no-multi-spaces": "error", | 64 "no-multi-spaces": "error", |
64 "no-new-func": "error", | 65 "no-new-func": "error", |
65 "no-new-object": "error", | 66 "no-new-object": "error", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
104 "strict": ["error", "global"], | 105 "strict": ["error", "global"], |
105 "valid-jsdoc": ["error", { | 106 "valid-jsdoc": ["error", { |
106 requireParamDescription: false, | 107 requireParamDescription: false, |
107 requireReturn: false, | 108 requireReturn: false, |
108 requireReturnDescription: false | 109 requireReturnDescription: false |
109 }], | 110 }], |
110 "yield-star-spacing": "error", | 111 "yield-star-spacing": "error", |
111 "yoda": "error" | 112 "yoda": "error" |
112 } | 113 } |
113 }; | 114 }; |
LEFT | RIGHT |