Skip to content

Commit c7f9d58

Browse files
author
Kristófer Reykjalín
authored
Format files using prettier rules (Automattic#798)
This also adds prettier ignores to eslint and stylelint so the linters won't go bonkers during CI. This includes adding the necessary npm packages to the package.json and package-lock.json. This commit is strictly to prepare for merging the try/wp-prettier branch (see Automattic#631 ).
1 parent 21085c7 commit c7f9d58

File tree

117 files changed

+4885
-1960
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+4885
-1960
lines changed

.eslintrc

+11-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"root": true,
55
"parser": "babel-eslint",
6-
"extends": [ "wpcalypso/react", "plugin:jsx-a11y/recommended" ],
6+
"extends": [ "wpcalypso/react", "plugin:jsx-a11y/recommended", "prettier" ],
77
"plugins": [ "jsx-a11y", "jest" ],
88
"env": {
99
"browser": true,
@@ -36,9 +36,15 @@
3636
"wpcalypso/import-no-redux-combine-reducers": "off",
3737
"wpcalypso/jsx-classname-namespace": "off",
3838
"wpcalypso/redux-no-bound-selectors": "warn",
39-
"react/jsx-curly-spacing": [ 2, { "when": "always", "children": { "when": "always" } } ],
40-
"jsx-a11y/label-has-for": [ "error", {
41-
"required": "id"
42-
} ]
39+
"react/jsx-curly-spacing": [
40+
2,
41+
{ "when": "always", "children": { "when": "always" } }
42+
],
43+
"jsx-a11y/label-has-for": [
44+
"error",
45+
{
46+
"required": "id"
47+
}
48+
]
4349
}
4450
}

.stylelintrc.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "stylelint-config-wordpress",
2+
"extends": [ "stylelint-config-wordpress", "stylelint-config-prettier" ],
33
"rules": {
44
"at-rule-empty-line-before": null,
55
"at-rule-no-unknown": null,
@@ -12,10 +12,12 @@
1212
"font-weight-notation": null,
1313
"function-url-quotes": "always",
1414
"max-line-length": null,
15+
"media-feature-parentheses-space-inside": "always",
1516
"no-descending-specificity": null,
1617
"no-duplicate-selectors": null,
1718
"rule-empty-line-before": null,
1819
"selector-class-pattern": null,
20+
"selector-pseudo-class-parentheses-space-inside": "always",
1921
"string-quotes": "single",
2022
"value-keyword-case": null,
2123
"value-list-comma-newline-after": null

assets/css/admin.css

+23-16
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
/* TODO: When merging into WooCommerce Core, integrate these icons into the WooCommerce.ttf icon font */
22
@font-face {
33
font-family: 'WCPay';
4-
src: url('../fonts/WCPay.eot');
5-
src: url('../fonts/WCPay.eot?#iefix') format('embedded-opentype'),
6-
url('../fonts/WCPay.woff') format('woff'),
7-
url('../fonts/WCPay.ttf') format('truetype'),
8-
url('../fonts/WCPay.svg#WCPay') format('svg');
4+
src: url( '../fonts/WCPay.eot' );
5+
src: url( '../fonts/WCPay.eot?#iefix' ) format( 'embedded-opentype' ),
6+
url( '../fonts/WCPay.woff' ) format( 'woff' ),
7+
url( '../fonts/WCPay.ttf' ) format( 'truetype' ),
8+
url( '../fonts/WCPay.svg#WCPay' ) format( 'svg' );
99
font-weight: normal;
1010
font-style: normal;
1111
}
12-
13-
#adminmenu #toplevel_page_wc-admin-path--payments-deposits .menu-icon-generic div.wp-menu-image::before,
14-
#adminmenu #toplevel_page_wc-admin-path--payments-connect .menu-icon-generic div.wp-menu-image::before {
12+
/* stylelint-disable selector-id-pattern */
13+
#adminmenu
14+
#toplevel_page_wc-admin-path--payments-deposits
15+
.menu-icon-generic
16+
div.wp-menu-image::before,
17+
#adminmenu
18+
#toplevel_page_wc-admin-path--payments-connect
19+
.menu-icon-generic
20+
div.wp-menu-image::before {
1521
font-family: 'WCPay' !important;
1622
content: '\e900';
1723
width: 24px;
1824
font-size: 24px;
1925
margin-top: -2px;
2026
}
27+
/* stylelint-enable selector-id-pattern */
2128

2229
.payment-method__brand {
2330
display: inline-block;
@@ -28,33 +35,33 @@
2835
}
2936

3037
.payment-method__brand--amex {
31-
background: no-repeat url('../images/cards/amex.svg');
38+
background: no-repeat url( '../images/cards/amex.svg' );
3239
}
3340

3441
.payment-method__brand--diners {
35-
background: no-repeat url('../images/cards/diners.svg');
42+
background: no-repeat url( '../images/cards/diners.svg' );
3643
}
3744

3845
.payment-method__brand--discover {
39-
background: no-repeat url('../images/cards/discover.svg');
46+
background: no-repeat url( '../images/cards/discover.svg' );
4047
}
4148

4249
.payment-method__brand--jcb {
43-
background: no-repeat url('../images/cards/jcb.svg');
50+
background: no-repeat url( '../images/cards/jcb.svg' );
4451
}
4552

4653
.payment-method__brand--mastercard {
47-
background: no-repeat url('../images/cards/mastercard.svg');
54+
background: no-repeat url( '../images/cards/mastercard.svg' );
4855
}
4956

5057
.payment-method__brand--unionpay {
51-
background: no-repeat url('../images/cards/unionpay.svg');
58+
background: no-repeat url( '../images/cards/unionpay.svg' );
5259
}
5360

5461
.payment-method__brand--visa {
55-
background: no-repeat url('../images/cards/visa.svg');
62+
background: no-repeat url( '../images/cards/visa.svg' );
5663
}
5764

5865
.payment-method__brand--unknown {
59-
background: no-repeat url('../images/cards/unknown.svg');
66+
background: no-repeat url( '../images/cards/unknown.svg' );
6067
}

assets/css/wcpay-checkout.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
#payment .payment_methods li .payment_box.payment_method_woocommerce_payments fieldset {
1+
#payment
2+
.payment_methods
3+
li
4+
.payment_box.payment_method_woocommerce_payments
5+
fieldset {
26
padding: 0;
37
}
48

0 commit comments

Comments
 (0)