-
Notifications
You must be signed in to change notification settings - Fork 7
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
355 changed files
with
8,551 additions
and
1,328 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
## Description: Runs phpcbf | ||
## Usage: phpcbf | ||
## Example: "ddev phpcbf" | ||
|
||
phpcbf "$@" |
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,7 @@ | ||
#!/bin/sh | ||
|
||
## Description: Runs phpcs | ||
## Usage: phpcs | ||
## Example: "ddev phpcs" | ||
|
||
phpcs "$@" |
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,7 @@ | ||
#!/bin/sh | ||
|
||
## Description: Runs PHPStan. | ||
## Usage: phpstan | ||
## Example: "ddev phpstan" | ||
|
||
phpstan "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="drupal_project"> | ||
<description>PHP_CodeSniffer standards for Drupal-based projects.</description> | ||
|
||
<!-- Use default Drupal coding standards. --> | ||
<rule ref="Drupal" /> | ||
<rule ref="DrupalPractice" /> | ||
<arg name="extensions" value="inc,install,module,php,profile,test,theme"/> | ||
<!-- Scan within this directory. --> | ||
<file>.</file> | ||
|
||
<exclude-pattern>vendor/*</exclude-pattern> | ||
<exclude-pattern>drush/*</exclude-pattern> | ||
<exclude-pattern>tests/*</exclude-pattern> | ||
<exclude-pattern>node_modules/*</exclude-pattern> | ||
<exclude-pattern>web/core/*</exclude-pattern> | ||
<exclude-pattern>web/libraries/*</exclude-pattern> | ||
<exclude-pattern>web/modules/contrib/*</exclude-pattern> | ||
<exclude-pattern>web/profiles/contrib/*</exclude-pattern> | ||
<exclude-pattern>web/themes/contrib/*</exclude-pattern> | ||
<exclude-pattern>web/sites/*/files/*</exclude-pattern> | ||
<exclude-pattern>load.environment.php</exclude-pattern> | ||
<exclude-pattern>.ddev/*</exclude-pattern> | ||
<exclude-pattern>scripts/*</exclude-pattern> | ||
<exclude-pattern>web/private/*</exclude-pattern> | ||
<exclude-pattern>web/sites/default/*</exclude-pattern> | ||
</ruleset> |
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
Oops, something went wrong.