smartbees/coding-standards-drupal

Installs: 1 319

Dependents: 0

Suggesters: 0

Security: 0

Type:phpcodesniffer-standard

1.1.4 2023-11-27 17:15 UTC

This package is auto-updated.

Last update: 2024-04-27 18:20:03 UTC


README

# Install coding standards.
composer req --dev smartbees/coding-standards-drupal
vendor/bin/sbcs init

# Add 'sbcs init' to the 'post-update-cmd' scripts in the composer.json file
# to automatically install the coding standards configs updates when they are
# available.
...
"scripts": {
    "post-update-cmd": [
        "vendor/bin/sbcs init"
    ],
...

# Run static analysis of the code.
vendor/bn/sbcs check

# Execute automatic code style fixes.
vendor/bin/sbcs check --fix