isaac / php-code-sniffer-baseliner
ISAAC PHP Code Sniffer Baseliner
Installs: 81 956
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 6
Forks: 5
Open Issues: 4
Requires
- php: ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0
- ext-dom: *
- ext-json: *
- ext-simplexml: *
- squizlabs/php_codesniffer: ^3.5
Requires (Dev)
- isaac/php-code-sniffer-standard: ^28.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan: ^1.6.8
- phpstan/phpstan-phpunit: ^1.1.1
- phpstan/phpstan-strict-rules: ^1.2.3
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2023-10-24 08:42:05 UTC
README
This repository has been archived and renamed, moved to iO PHP_CodeSniffer Baseliner. Feature sniffs and changes will be processed in the iO repository.
PHP_CodeSniffer Baseliner
This tool enables you to integrate PHP_CodeSniffer into an existing
project by automatically adding phpcs:ignore
and phpcs:disable
/phpcs:enable
instructions throughout the codebase
as a baseline. This allows you to make PHP_CodeSniffer pass without changing any source code, making it
possible to use PHP_CodeSniffer in e.g. continuous integration pipelines or git hooks. This way, you can enforce that
all new code adheres to your coding standard without touching the existing code.
Installation
Require the package with composer:
composer require --dev isaac/php-code-sniffer-baseliner
It is also possible to install this package as a global composer dependency.
Usage
In order to add phpcs:ignore
and phpcs:disable
/phpcs:enable
instructions throughout your project, run:
vendor/bin/phpcs-baseliner create-baseline
How does it work?
First, the tool runs vendor/bin/phpcs
and captures the report. Based on the report output, it will add
// phpcs:ignore
instructions to the source code for each violation. It will only ignore the sniffs that actually are
violated. In rare cases, adding these instructions could introduce new violations. Therefore, this process is repeated
until no violations are reported by phpcs
.
Example
Let's say we want to enforce declare(strict_types = 1);
statements and native property type hints using
PHP_CodeSniffer. The Slevomat Coding Standard has sniffs for this:
SlevomatCodingStandard.TypeHints.DeclareStrictTypes
and SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingNativeTypeHint
. We install
Slevomat Coding Standard and add the sniffs to our ruleset in phpcs.xml
.
If we now run vendor/bin/phpcs-baseliner create-baseline
in our project, it will add ignore instructions in all files
not containing declare(strict_types = 1);
statements or native property type declarations:
- <?php + <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes -- baseline class Foo { + // phpcs:ignore SlevomatCodingStandard.TypeHints.PropertyTypeHint.MissingNativeTypeHint -- baseline private $bar; }
In some cases, it is not possible to insert a // phpcs:ignore
instruction directly above the violated line (e.g.
multi-line strings). In those cases, // phpcs:disable
and // phpcs:enable
instructions are added:
<?php class Foo { + // phpcs:disable Generic.Files.LineLength.TooLong -- baseline public const BAR = ' Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas malesuada, lectus vitae vestibulum vulputate, mi morbi.'; + // phpcs:enable Generic.Files.LineLength.TooLong -- baseline }
Features
- Automatic indentation
- Ignoring a group of multiple exclusions per line, e.g.
// phpcs:ignore Generic.Files.LineLength.TooLong, Generic.Arrays.DisallowLongArraySyntax -- baseline
- Merging new instructions with existing instructions
- Messages of existing instructions are merged as wel:
// phpcs:ignore Generic.Files.LineLength.TooLong, Generic.Arrays.DisallowLongArraySyntax -- existing message; baseline
- Using
phpcs:disable
/phpcs:enable
when insertingphpcs:ignore
is not possible (i.e. for multi-line strings, including HEREDOCs and NOWDOCs) - Adding a star prefix when a violation is found within a comment block with stars, e.g.:
/* * phpcs:ignore Generic.Files.LineLength.TooLong * Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas malesuada, lectus vitae vestibulum vulputate, mi morbi. */
- All features are unit tested, see the
AddBaselineProcessorTestDataProvider
class for an extensive test data set.
Roadmap
- Support processing files that do not start with
<?php
on the first line. - Support processing files that contain
?>
. - Support ignoring violations on the first line of a file that end with a multi-line string, example:
<?php echo 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas malesuada, lectus vitae vestibulum vulputate, mi morbi.'; ?>
- Support detection of and merging with older types of ignore instructions, such as
@phpcsSuppress
.