Skip to content
Snippets Groups Projects
Verified Commit ba1e5705 authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #2959148 by alexpott: Enable PHPCS for info.yml files

parent 295e297e
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -4,4 +4,3 @@ description: 'Test module for breakpoint.'
package: Testing
version: VERSION
core: 8.x
......@@ -4,4 +4,3 @@ description: 'Support module for testing early bootstrap getting of annotations
core: 8.x
package: Testing
version: VERSION
......@@ -4,4 +4,3 @@ description: 'Test theme for responsive image.'
package: Testing
version: VERSION
core: 8.x
......@@ -6,4 +6,3 @@ version: VERSION
core: 8.x
dependencies:
- drupal:test_page_test
......@@ -5,4 +5,4 @@ package: Testing
version: VERSION
core: 8.x
dependencies:
- drupal:entity_test_update
\ No newline at end of file
- drupal:entity_test_update
......@@ -4,4 +4,3 @@ type: module
package: Testing
core: 8.x
version: VERSION
......@@ -5,4 +5,3 @@ version: VERSION
base theme: classy
core: 8.x
libraries:
......@@ -7,7 +7,7 @@
<file>scripts/rebuild_token_calculator.sh</file>
<file>scripts/run-tests.sh</file>
<file>scripts/update-countries.sh</file>
<arg name="extensions" value="inc,install,module,php,profile,test,theme"/>
<arg name="extensions" value="inc,install,module,php,profile,test,theme,info.yml"/>
<!--Exclude third party code.-->
<exclude-pattern>./assets/vendor/*</exclude-pattern>
......@@ -155,6 +155,12 @@
<rule ref="Generic.PHP.UpperCaseConstant"/>
<rule ref="Generic.WhiteSpace.DisallowTabIndent"/>
<!-- Internal sniffs -->
<rule ref="Internal.NoCodeFound">
<!-- No PHP code in *.info.yml -->
<exclude-pattern>*.info.yml</exclude-pattern>
</rule>
<!-- MySource sniffs -->
<rule ref="MySource.Debug.DebugCode"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment