├── .gitattributes ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RULES.md ├── WPForms ├── Sniffs │ ├── BaseSniff.php │ ├── Comments │ │ ├── DeprecatedTagHooksSniff.php │ │ ├── DeprecatedTagSniff.php │ │ ├── DescriptionStopSymbolPropertySniff.php │ │ ├── DescriptionStopSymbolSniff.php │ │ ├── LanguageInjectionSniff.php │ │ ├── NoSpacesAfterParamTagSniff.php │ │ ├── NoSpacesAfterReturnTagSniff.php │ │ ├── PHPDocDefineSniff.php │ │ ├── PHPDocHooksSniff.php │ │ ├── ParamTagHooksSniff.php │ │ ├── ShortDescriptionHooksSniff.php │ │ ├── SinceTagDefineSniff.php │ │ ├── SinceTagHooksSniff.php │ │ ├── SinceTagPropertySniff.php │ │ ├── SinceTagSniff.php │ │ └── TranslatorsSniff.php │ ├── Formatting │ │ ├── EmptyLineAfterAssigmentVariablesSniff.php │ │ ├── EmptyLineAfterFunctionDeclarationSniff.php │ │ ├── EmptyLineBeforeReturnSniff.php │ │ └── SwitchSniff.php │ ├── PHP │ │ ├── BackSlashSniff.php │ │ ├── ConditionsYodaDisableSniff.php │ │ ├── HooksMethodSniff.php │ │ ├── UseStatementSniff.php │ │ ├── ValidateDomainSniff.php │ │ └── ValidateHooksSniff.php │ └── PropertyBaseSniff.php ├── Traits │ ├── CommentTag.php │ ├── Description.php │ ├── DuplicateHook.php │ ├── GetEntityName.php │ └── Version.php └── ruleset.xml └── composer.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/.gitattributes -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/README.md -------------------------------------------------------------------------------- /RULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/RULES.md -------------------------------------------------------------------------------- /WPForms/Sniffs/BaseSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/BaseSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/DeprecatedTagHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/DeprecatedTagHooksSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/DeprecatedTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/DeprecatedTagSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/DescriptionStopSymbolPropertySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/DescriptionStopSymbolPropertySniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/DescriptionStopSymbolSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/DescriptionStopSymbolSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/LanguageInjectionSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/LanguageInjectionSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/NoSpacesAfterParamTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/NoSpacesAfterParamTagSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/NoSpacesAfterReturnTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/NoSpacesAfterReturnTagSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/PHPDocDefineSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/PHPDocDefineSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/PHPDocHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/PHPDocHooksSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/ParamTagHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/ParamTagHooksSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/ShortDescriptionHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/ShortDescriptionHooksSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/SinceTagDefineSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/SinceTagDefineSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/SinceTagHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/SinceTagHooksSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/SinceTagPropertySniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/SinceTagPropertySniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/SinceTagSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/SinceTagSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Comments/TranslatorsSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Comments/TranslatorsSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Formatting/EmptyLineAfterAssigmentVariablesSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Formatting/EmptyLineAfterAssigmentVariablesSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Formatting/EmptyLineAfterFunctionDeclarationSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Formatting/EmptyLineAfterFunctionDeclarationSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Formatting/EmptyLineBeforeReturnSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Formatting/EmptyLineBeforeReturnSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/Formatting/SwitchSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/Formatting/SwitchSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PHP/BackSlashSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PHP/BackSlashSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PHP/ConditionsYodaDisableSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PHP/ConditionsYodaDisableSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PHP/HooksMethodSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PHP/HooksMethodSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PHP/UseStatementSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PHP/UseStatementSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PHP/ValidateDomainSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PHP/ValidateDomainSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PHP/ValidateHooksSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PHP/ValidateHooksSniff.php -------------------------------------------------------------------------------- /WPForms/Sniffs/PropertyBaseSniff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Sniffs/PropertyBaseSniff.php -------------------------------------------------------------------------------- /WPForms/Traits/CommentTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Traits/CommentTag.php -------------------------------------------------------------------------------- /WPForms/Traits/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Traits/Description.php -------------------------------------------------------------------------------- /WPForms/Traits/DuplicateHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Traits/DuplicateHook.php -------------------------------------------------------------------------------- /WPForms/Traits/GetEntityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Traits/GetEntityName.php -------------------------------------------------------------------------------- /WPForms/Traits/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/Traits/Version.php -------------------------------------------------------------------------------- /WPForms/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/WPForms/ruleset.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wpforms-phpcs/HEAD/composer.json --------------------------------------------------------------------------------