diff options
| author | Ellis KenyĆ <elken@users.noreply.github.com> | 2022-05-12 00:26:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-11 16:26:33 -0700 |
| commit | 982df5a2e0c1695e87069b1e4a54ed90d7b2026c (patch) | |
| tree | 1e657bb56341aaca672d5988815e716955335435 /test/formatters/samplecode/phpcs | |
| parent | 83179060f21befac63b92210b8425638a61467ae (diff) | |
Add phpcs & introduce scripts/formatters (#87)
* feat: add phpcs & introduce scripts/formatters
Add phpcs as a supported formatter, and include support for
apheleia-defined scripts for more troublesome formatters
* Revert Emacs version requirement
* More quoting
* Adjust language in documentation
* Thanks checkdoc, lol
Co-authored-by: Radon Rosborough <radon.neon@gmail.com>
Diffstat (limited to 'test/formatters/samplecode/phpcs')
| -rw-r--r-- | test/formatters/samplecode/phpcs/in.php | 5 | ||||
| -rw-r--r-- | test/formatters/samplecode/phpcs/out.php | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/formatters/samplecode/phpcs/in.php b/test/formatters/samplecode/phpcs/in.php new file mode 100644 index 0000000..378be5f --- /dev/null +++ b/test/formatters/samplecode/phpcs/in.php @@ -0,0 +1,5 @@ +<?php + +if(true) +{ + echo 'Hello World';} diff --git a/test/formatters/samplecode/phpcs/out.php b/test/formatters/samplecode/phpcs/out.php new file mode 100644 index 0000000..eeca083 --- /dev/null +++ b/test/formatters/samplecode/phpcs/out.php @@ -0,0 +1,5 @@ +<?php + +if(true) { + echo 'Hello World'; +} |
