-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
63 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
/.github export-ignore | ||
/docker export-ignore | ||
/docs export-ignore | ||
/features export-ignore | ||
/spec export-ignore | ||
/src/Tests export-ignore | ||
/tests export-ignore | ||
/.auto-changelog export-ignore | ||
/.editorconfig export-ignore | ||
/.envrc export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.prettierignore export-ignore | ||
/.prettierrc export-ignore | ||
/.scrutinizer.yml export-ignore | ||
/behat.yaml export-ignore | ||
/behat.yaml.dist export-ignore | ||
/grumphp.yml export-ignore | ||
/CHANGELOG.md export-ignore | ||
/docker-compose.yaml export-ignore | ||
/grumphp.yml.dist export-ignore | ||
/infection.json export-ignore | ||
/infection.json.dist export-ignore | ||
/phpspec.yml export-ignore | ||
/LICENSE export-ignore | ||
/MAINTAINERS.txt export-ignore | ||
/phpspec.yml.dist export-ignore | ||
/phpstan.neon export-ignore | ||
/phpstan.neon.dist export-ignore | ||
/psalm.xml export-ignore | ||
/README.md export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Prettier checks | ||
|
||
# This action works with pull requests and pushes | ||
on: | ||
pull_request: | ||
push: | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install the Nix package manager | ||
uses: cachix/install-nix-action@v17 | ||
|
||
- name: Checks | ||
run: nix run nixpkgs#nodePackages.prettier -- --check . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
/.direnv/ | ||
/.idea/ | ||
/vendor | ||
composer.lock | ||
grumphp.yml | ||
phpspec.yml | ||
/build/ | ||
/vendor/ | ||
/.php_cs.cache | ||
/composer.lock | ||
.php_cs.cache | ||
.envrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/.direnv/ | ||
/.idea/ | ||
/build/ | ||
/vendor/ | ||
/docs/ | ||
CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"proseWrap": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters