Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: stylelint-config-eyeo/index.js

Issue 29541680: Issue 5109 - Create stylelintrc for websites and ui modules (Closed) Base URL: https://hg.adblockplus.org/codingtools
Patch Set: Fixed typos, removed unit-no-unkown, reordered brace rules Created Sept. 14, 2017, 8:31 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « stylelint-config-eyeo/README.md ('k') | stylelint-config-eyeo/package.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present 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 "use strict"
19
20 module.exports = {
21 "extends": "stylelint-config-recommended",
22 "rules": {
23
24 // Opening braces go on their own line
25 "block-closing-brace-empty-line-before": "never",
26 "block-closing-brace-newline-after": "always",
27 "block-closing-brace-newline-before": "always-multi-line",
28 "block-opening-brace-newline-after": "always-multi-line",
29 "block-opening-brace-newline-before": "always-multi-line",
30
31 // Use a space between the last selector and the declaration block (Google H TML/CSS Style Guide)
Thomas Greiner 2017/09/14 10:52:16 Coding style: Line length should be 80 characters
ire 2017/09/15 08:54:12 Done.
32 "block-closing-brace-space-after": "always-single-line",
33 "block-closing-brace-space-before": "always-single-line",
34 "block-opening-brace-space-after": "always-single-line",
35 "block-opening-brace-space-before": "always",
36
37 // Use double over single quotation marks
38 "string-quotes": "double",
39
40 // CSS color values should be specified in hexadecimal where possible
41 "color-named": "never",
42
43 // CSS shorthand properties usage is optional
44
45 // CSS rule declaration order should follow the WordPress CSS Coding Standar ds
46
47 // CSS number values should specify units where possible
48
49 // Don't omit the optional leading 0 for decimal numbers
50 "number-leading-zero": "always",
51 "number-no-trailing-zeros": true,
52
53 // Two spaces per logic level (Mozilla Coding Style)
54 "indentation": 2,
55
56 },
57 }
OLDNEW
« no previous file with comments | « stylelint-config-eyeo/README.md ('k') | stylelint-config-eyeo/package.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld