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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "no-lone-blocks": "error", | 62 "no-lone-blocks": "error", |
63 "no-lonely-if": "error", | 63 "no-lonely-if": "error", |
64 "no-multi-spaces": "error", | 64 "no-multi-spaces": "error", |
65 "no-new-func": "error", | 65 "no-new-func": "error", |
66 "no-new-object": "error", | 66 "no-new-object": "error", |
67 "no-proto": "error", | 67 "no-proto": "error", |
68 "no-self-compare": "error", | 68 "no-self-compare": "error", |
69 "no-shadow": "error", | 69 "no-shadow": "error", |
70 "no-trailing-spaces": "error", | 70 "no-trailing-spaces": "error", |
71 "no-unneeded-ternary": "error", | 71 "no-unneeded-ternary": "error", |
72 "no-unused-vars": "off", | 72 "no-unused-vars": ["error", {vars: "local", args: "none"}], |
73 "no-useless-computed-key": "error", | 73 "no-useless-computed-key": "error", |
74 "no-useless-concat": "error", | 74 "no-useless-concat": "error", |
75 "no-useless-escape": "error", | 75 "no-useless-escape": "error", |
76 "no-useless-return": "error", | 76 "no-useless-return": "error", |
77 "no-var": "error", | 77 "no-var": "error", |
78 "no-warning-comments": "error", | 78 "no-warning-comments": "error", |
79 "no-whitespace-before-property": "error", | 79 "no-whitespace-before-property": "error", |
80 "no-with": "error", | 80 "no-with": "error", |
81 "object-curly-spacing": "error", | 81 "object-curly-spacing": "error", |
82 "object-shorthand": ["error", "always", { | 82 "object-shorthand": ["error", "always", { |
(...skipping 22 matching lines...) Expand all Loading... |
105 "strict": ["error", "global"], | 105 "strict": ["error", "global"], |
106 "valid-jsdoc": ["error", { | 106 "valid-jsdoc": ["error", { |
107 requireParamDescription: false, | 107 requireParamDescription: false, |
108 requireReturn: false, | 108 requireReturn: false, |
109 requireReturnDescription: false | 109 requireReturnDescription: false |
110 }], | 110 }], |
111 "yield-star-spacing": "error", | 111 "yield-star-spacing": "error", |
112 "yoda": "error" | 112 "yoda": "error" |
113 } | 113 } |
114 }; | 114 }; |
OLD | NEW |