Skip to content
Snippets Groups Projects
Select Git revision
  • 2.x
  • project-update-bot-only
  • 3430113-automated-drupal-11
  • 8.x-1.x
  • 2.0.0-alpha3
  • 2.0.0-alpha2
  • 2.0.0-alpha1
  • 8.x-1.0-alpha2
  • 8.x-1.0-alpha1
9 results

phpcs.xml

Blame
  • Forked from project / encrypt_vault_transit
    3 commits behind the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpcs.xml 477 B
    <?xml version="1.0"?>
    <ruleset name="vault-rules">
        <description>phpcs rules for Vault</description>
    
         <!-- Include all Drupal standards -->
        <rule ref="Drupal"/>
        <rule ref="DrupalPractice"/>
    
        <!-- The line length standard is too restrictive for markdown files. -->
        <rule ref="Drupal.Files.TxtFileLineLength.TooLong">
            <exclude-pattern>*/docs/*.md</exclude-pattern>
            <exclude-pattern>*/docs/**/*.md</exclude-pattern>
        </rule>
    
    </ruleset>