Skip to content

Commit 70301bb

Browse files
authored
Merge pull request #448 from material-components/develop
Release 0.7.0 M3
2 parents b0a8ced + fd895af commit 70301bb

File tree

326 files changed

+82916
-35392
lines changed

Some content is hidden

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

326 files changed

+82916
-35392
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
"jsx-a11y/click-events-have-key-events": "off",
3636
"react-hooks/rules-of-hooks": "error",
3737
"react-hooks/exhaustive-deps": "warn",
38-
"import/no-extraneous-dependencies": "off"
38+
"import/no-extraneous-dependencies": "off",
39+
"jsdoc/valid-types": "warn"
3940
},
4041
"env": {
4142
"jest/globals": true,

.github/workflows/lint-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,16 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
php_versions: [7.4]
38-
wp_versions: [5.7, 5.8.2]
38+
wp_versions: [5.9, 6.0]
3939
include:
4040
- php_versions: 7.3
41-
wp_versions: 5.6
41+
wp_versions: 5.9
4242

4343
env:
4444
NODE_ENV: teste2e
4545
WP_VERSION: ${{ matrix.wp_versions }}
4646
PHP_VERSION: php${{ matrix.php_versions }}-apache
47+
WORDPRESS_DEBUG: 0
4748

4849
steps:
4950
- uses: actions/checkout@v2

.stylelintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"number-leading-zero": null,
1010
"selector-class-pattern": null,
1111
"selector-type-no-unknown": [ true, { "ignore": ["custom-elements"] } ],
12-
"at-rule-no-unknown": [ true, { "ignoreAtRules": ["mixin"] } ]
12+
"at-rule-no-unknown": [ true, { "ignoreAtRules": ["mixin"] } ],
13+
"function-calc-no-invalid": null
1314
}
1415
}

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ services:
5454
- ./composer.lock:/var/www/html/wp-content/themes/material-design-google/composer.lock
5555
restart: always
5656
environment:
57-
WORDPRESS_DEBUG: 1
57+
WORDPRESS_DEBUG: ${WORDPRESS_DEBUG-1}
5858
WORDPRESS_DB_USER: ${WP_DB_USER}
5959
WORDPRESS_DB_PASSWORD: ${WP_DB_PASSWORD}
6060

0 commit comments

Comments
 (0)