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-present eyeo GmbH | 3 * Copyright (C) 2006-present 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 |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 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/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 "use strict"; | 18 "use strict"; |
19 | 19 |
20 module.exports = { | 20 module.exports = { |
21 extends: "stylelint-config-recommended", | 21 extends: "stylelint-config-recommended", |
22 rules: { | 22 rules: { |
23 // Opening braces go on their own line | 23 // Opening braces go on their own line |
| 24 "block-opening-brace-newline-before": "always-multi-line", |
| 25 "block-opening-brace-newline-after": "always-multi-line", |
| 26 "block-closing-brace-newline-before": "always-multi-line", |
| 27 "block-closing-brace-newline-after": "always", |
24 "block-closing-brace-empty-line-before": "never", | 28 "block-closing-brace-empty-line-before": "never", |
25 "block-closing-brace-newline-after": "always", | |
26 "block-closing-brace-newline-before": "always-multi-line", | |
27 "block-opening-brace-newline-after": "always-multi-line", | |
28 "block-opening-brace-newline-before": "always-multi-line", | |
29 | 29 |
30 // Use a space between the last selector and the declaration block | 30 // Use a space between the last selector and the declaration block |
31 // (Google HTML/CSS Style Guide) | 31 "block-opening-brace-space-before": "always-single-line", |
32 "block-closing-brace-space-after": "always-single-line", | 32 "block-closing-brace-space-after": "always-single-line", |
33 "block-closing-brace-space-before": "always-single-line", | 33 |
34 "block-opening-brace-space-after": "always-single-line", | 34 // Use a space after a property name’s colon |
35 "block-opening-brace-space-before": "always", | 35 "declaration-colon-space-after": "always", |
| 36 |
| 37 // Selectors and declarations should be on their own line |
| 38 "selector-list-comma-newline-after": "always", |
| 39 "declaration-block-semicolon-newline-after": "always-multi-line", |
| 40 |
| 41 // Separate rules by an empty line |
| 42 "rule-empty-line-before": ["always", { |
| 43 "ignore": ["after-comment", "first-nested"] |
| 44 }], |
36 | 45 |
37 // Use double over single quotation marks | 46 // Use double over single quotation marks |
38 "string-quotes": "double", | 47 "string-quotes": "double", |
39 | 48 |
40 // CSS color values should be specified in hexadecimal where possible | 49 // CSS color values should be specified in hexadecimal where possible |
41 "color-named": "never", | 50 "color-named": "never", |
42 | 51 |
43 // CSS shorthand properties usage is optional | 52 // Use short hexadecimal notation where possible |
44 | 53 "color-hex-length": "short", |
45 // CSS rule declaration order should follow the | |
46 // WordPress CSS Coding Standards | |
47 | |
48 // CSS number values should specify units where possible | |
49 | 54 |
50 // Don't omit the optional leading 0 for decimal numbers | 55 // Don't omit the optional leading 0 for decimal numbers |
51 "number-leading-zero": "always", | 56 "number-leading-zero": "always", |
52 "number-no-trailing-zeros": true, | 57 "number-no-trailing-zeros": true, |
53 | 58 |
54 // Two spaces per logic level (Mozilla Coding Style) | 59 // Two spaces per logic level |
55 "indentation": 2, | 60 "indentation": 2, |
56 | 61 |
57 // Line length should be 80 characters or less | 62 // Line length should be 80 characters or less |
58 "max-line-length": 80 | 63 "max-line-length": 80, |
| 64 |
| 65 // Avoid qualifying ID and class names with type selectors |
| 66 "selector-no-qualifying-type": [true, { |
| 67 "ignore": ["attribute"] |
| 68 }] |
59 } | 69 } |
60 }; | 70 }; |
LEFT | RIGHT |