File tree Expand file tree Collapse file tree 8 files changed +23116
-47
lines changed Expand file tree Collapse file tree 8 files changed +23116
-47
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ MYSQL_USER=wordpress
5
5
MYSQL_PASSWORD=wordpress
6
6
7
7
# WordPress
8
- WP_VERSION=5.3.2
8
+ WP_VERSION=5.4
9
9
WP_DB_USER=wordpress
10
10
WP_DB_PASSWORD=wordpress
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : [
3
- " plugin:@wordpress/eslint-plugin/recommended"
3
+ " plugin:@wordpress/eslint-plugin/recommended" ,
4
+ " prettier"
4
5
],
6
+ "rules" : {
7
+ "@wordpress/i18n-text-domain" : [
8
+ " error" ,
9
+ {
10
+ "allowedTextDomain" : [ " foo-bar" ]
11
+ }
12
+ ],
13
+ "prettier/prettier" : [
14
+ " error" ,
15
+ {
16
+ "singleQuote" : true ,
17
+ "parenSpacing" : true ,
18
+ "trailingComma" : " es5" ,
19
+ "jsxBracketSameLine" : false ,
20
+ "arrowParens" : " avoid"
21
+ }
22
+ ]
23
+ },
5
24
"overrides" : [
6
25
{
7
26
"files" :[
Original file line number Diff line number Diff line change 3
3
.idea
4
4
composer.lock
5
5
foo-bar.zip
6
- package-lock.json
7
6
assets /css /*
8
7
! assets /css /src /
9
8
assets /js /* .js
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
/* eslint-env node */
2
2
3
- module . exports = function ( grunt ) {
3
+ module . exports = function ( grunt ) {
4
4
'use strict' ;
5
5
6
6
// prettier-ignore
Original file line number Diff line number Diff line change 13
13
"php" : " >=5.6.20"
14
14
},
15
15
"require-dev" : {
16
- "automattic/vipwpcs" : " * " ,
17
- "dealerdirect/phpcodesniffer-composer-installer" : " * " ,
18
- "php-coveralls/php-coveralls" : " 2.2.0 " ,
19
- "phpcompatibility/phpcompatibility-wp" : " * " ,
16
+ "automattic/vipwpcs" : " @stable " ,
17
+ "dealerdirect/phpcodesniffer-composer-installer" : " @stable " ,
18
+ "php-coveralls/php-coveralls" : " @stable " ,
19
+ "phpcompatibility/phpcompatibility-wp" : " @stable " ,
20
20
"phpunit/phpcov" : " ^3.1 || ^6.0" ,
21
21
"phpunit/phpunit" : " ^5.7 || ^7" ,
22
- "slowprog/composer-copy-file" : " * " ,
23
- "wp-coding-standards/wpcs" : " * " ,
24
- "xwp/wordpress-tests-installer" : " * " ,
25
- "xwp/wp-dev-lib" : " * "
22
+ "slowprog/composer-copy-file" : " @stable " ,
23
+ "wp-coding-standards/wpcs" : " @stable " ,
24
+ "xwp/wordpress-tests-installer" : " @stable " ,
25
+ "xwp/wp-dev-lib" : " @stable "
26
26
},
27
27
"scripts" : {
28
28
"build" : [
You can’t perform that action at this time.
0 commit comments