Skip to content

Commit

Permalink
Merge pull request #16 from liip/use-hocs
Browse files Browse the repository at this point in the history
Release 1.3.0
  • Loading branch information
tschortsch authored Oct 14, 2019
2 parents 94ed761 + 00cfcff commit 35619b2
Show file tree
Hide file tree
Showing 36 changed files with 12,212 additions and 5,152 deletions.
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
extends @wordpress/browserslist-config
192 changes: 0 additions & 192 deletions .eslintrc.json

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
node_modules
vendor
build/
build/*
!build/index.js
!build/editor.css
!build/style.css
wp-cli.phar
composer.phar
17 changes: 17 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "stylelint-config-wordpress",
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"comment-empty-line-before": null,
"declaration-property-unit-whitelist": null,
"font-weight-notation": null,
"max-line-length": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"number-leading-zero": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"value-keyword-case": null
}
}
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ before_install:
install:
- composer install
- vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs
- npm install
- npm ci

script:
- scripts/phpcodesniffer.sh
- npm run lint
- npm run lint:js
- npm run lint:pkg-json
- npm run lint:css

deploy:
provider: script
Expand Down
Loading

0 comments on commit 35619b2

Please sign in to comment.