| OLD | NEW |
| 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 17 matching lines...) Expand all Loading... |
| 28 "array-bracket-spacing": "error", | 28 "array-bracket-spacing": "error", |
| 29 "arrow-spacing": "error", | 29 "arrow-spacing": "error", |
| 30 "block-scoped-var": "error", | 30 "block-scoped-var": "error", |
| 31 "block-spacing": "error", | 31 "block-spacing": "error", |
| 32 "brace-style": ["error", "allman", {allowSingleLine: true}], | 32 "brace-style": ["error", "allman", {allowSingleLine: true}], |
| 33 "camelcase": ["error", {properties: "never"}], | 33 "camelcase": ["error", {properties: "never"}], |
| 34 "comma-dangle": "error", | 34 "comma-dangle": "error", |
| 35 "comma-spacing": "error", | 35 "comma-spacing": "error", |
| 36 "comma-style": "error", | 36 "comma-style": "error", |
| 37 "computed-property-spacing": "error", | 37 "computed-property-spacing": "error", |
| 38 "curly": ["error", "multi-or-nest"], | |
| 39 "eol-last": "error", | 38 "eol-last": "error", |
| 40 "func-call-spacing": "error", | 39 "func-call-spacing": "error", |
| 41 "indent": ["error", 2, {SwitchCase: 1, ArrayExpression: "first"}], | 40 "indent": ["error", 2, {SwitchCase: 1, ArrayExpression: "first"}], |
| 42 "key-spacing": "error", | 41 "key-spacing": "error", |
| 43 "keyword-spacing": "error", | 42 "keyword-spacing": "error", |
| 44 "linebreak-style": "error", | 43 "linebreak-style": "error", |
| 45 "lines-around-directive": "error", | 44 "lines-around-directive": "error", |
| 46 "max-len": ["error", 80, {ignoreUrls: true, ignoreRegExpLiterals: true}], | 45 "max-len": ["error", 80, {ignoreUrls: true, ignoreRegExpLiterals: true}], |
| 47 "new-parens": "error", | 46 "new-parens": "error", |
| 48 "no-array-constructor": "error", | 47 "no-array-constructor": "error", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "strict": ["error", "global"], | 105 "strict": ["error", "global"], |
| 107 "valid-jsdoc": ["error", { | 106 "valid-jsdoc": ["error", { |
| 108 requireParamDescription: false, | 107 requireParamDescription: false, |
| 109 requireReturn: false, | 108 requireReturn: false, |
| 110 requireReturnDescription: false | 109 requireReturnDescription: false |
| 111 }], | 110 }], |
| 112 "yield-star-spacing": "error", | 111 "yield-star-spacing": "error", |
| 113 "yoda": "error" | 112 "yoda": "error" |
| 114 } | 113 } |
| 115 }; | 114 }; |
| OLD | NEW |