-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34b73cf
commit d74de38
Showing
4 changed files
with
44 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0"?> | ||
<ruleset name="WordPress Theme Coding Standards"> | ||
<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml --> | ||
<!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml --> | ||
|
||
<!-- Set a description for this ruleset. --> | ||
<description>A custom set of code standard rules to check for WordPress themes.</description> | ||
|
||
<!-- Include the WordPress ruleset, with space for exclusions if necessary. --> | ||
<rule ref="WordPress-Core"> | ||
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" /> | ||
<exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" /> | ||
<exclude name="Generic.Strings.UnnecessaryStringConcat.Found" /> | ||
<exclude name="WordPress.Files.FileName.UnderscoresNotAllowed" /> | ||
<exclude name="WordPress.NamingConventions.ValidHookName.NotLowercase" /> | ||
<exclude name="WordPress.NamingConventions.ValidHookName.UseUnderscores" /> | ||
<exclude name="WordPress.Files.FileName.InvalidClassFileName" /> | ||
<exclude name="Generic.Commenting.DocComment.InvalidEndChar" /> | ||
<exclude name="WordPress.XSS.EscapeOutput.OutputNotEscaped" /> | ||
<exclude name="Generic.Commenting.DocComment.InvalidEndChar" /> | ||
|
||
<exclude name="PEAR.Functions.FunctionCallSignature.Indent" /> | ||
|
||
<exclude name="Squiz.Commenting.FileComment.SpacingAfterComment" /> | ||
<exclude name="Squiz.Commenting.FunctionComment.MissingParamTag" /> | ||
<exclude name="Squiz.Commenting.InlineComment.InvalidEndChar" /> | ||
<exclude name="Squiz.Commenting.InlineComment.NotCapital" /> | ||
<include name="WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned" /> | ||
</rule> | ||
<rule ref="WordPress-Docs"> | ||
|
||
</rule> | ||
|
||
<rule ref="WordPress-Extra"> | ||
</rule> | ||
</ruleset> |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* Plugin Name: Post and Page Builder | ||
* Plugin URI: https://www.boldgrid.com/boldgrid-editor/?utm_source=ppb-wp-repo&utm_medium=plugin-uri&utm_campaign=ppb | ||
* Description: Customized drag and drop editing for posts and pages. The Post and Page Builder adds functionality to the existing TinyMCE Editor to give you easier control over your content. | ||
* Version: 1.26.2 | ||
* Version: 1.26.3 | ||
* Author: BoldGrid <[email protected]> | ||
* Author URI: https://www.boldgrid.com/?utm_source=ppb-wp-repo&utm_medium=author-uri&utm_campaign=ppb | ||
* Text Domain: boldgrid-editor | ||
|
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