-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from a8cteam51/rename-prefix
Rename prefix
- Loading branch information
Showing
94 changed files
with
7,252 additions
and
3,913 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
mu-plugins/a8csp-project-scaffold-features/.phpcs.xml.dist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="a8csp-project-scaffold-features" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../vendor/squizlabs/php_codesniffer/phpcs.xsd"> | ||
<description>Custom ruleset for the A8CSP Project Scaffold site features.</description> | ||
|
||
<!-- Extend the A8CSP ruleset. --> | ||
<rule ref="../../vendor/a8cteam51/team51-configs/quality-tools/phpcs.xml.dist"/> | ||
|
||
<!-- Check that the proper text domain(s) is used everywhere. --> | ||
<rule ref="WordPress.WP.I18n"> | ||
<properties> | ||
<property name="text_domain" type="array"> | ||
<element value="a8csp-project-scaffold-features"/> <!-- Change this value to your plugin slug. --> | ||
</property> | ||
</properties> | ||
</rule> | ||
|
||
<!-- Check that the proper prefix is used everywhere. --> | ||
<rule ref="WordPress.NamingConventions.PrefixAllGlobals"> | ||
<properties> | ||
<property name="prefixes" type="array"> | ||
<element value="a8csp_project_scaffold_features"/> <!-- Change this value to your plugin prefix. --> | ||
<element value="a8csp_features"/> <!-- Change this value to your plugin prefix. --> | ||
</property> | ||
</properties> | ||
</rule> | ||
|
||
<!-- Add any other custom rules here. --> | ||
</ruleset> |
Oops, something went wrong.