diff --git a/docs/options.md b/docs/options.md index f11a3b5..fe527b9 100644 --- a/docs/options.md +++ b/docs/options.md @@ -9849,6 +9849,8 @@ Add rule(s). i.e. line_ending,-full_opening_tag,@PSR2 (PHP-CS-Fixer 2 only) (Sup **Key**: `standard` +**Default**: `PEAR` + **Type**: `string` **Supported Beautifiers**: [`PHPCBF`](#phpcbf) @@ -9862,7 +9864,7 @@ Standard name Squiz, PSR2, PSR1, PHPCS, PEAR, Zend, MySource... or path to CS ru ```json { "php": { - "standard": "" + "standard": "PEAR" } } ``` @@ -17568,6 +17570,8 @@ undefined (Supported by PHPCBF) **Key**: `standard` +**Default**: `PEAR` + **Type**: `string` **Supported Beautifiers**: [`PHPCBF`](#phpcbf) @@ -17581,7 +17585,7 @@ Standard name Squiz, PSR2, PSR1, PHPCS, PEAR, Zend, MySource... or path to CS ru ```json { "php": { - "standard": "" + "standard": "PEAR" } } ``` diff --git a/src/options.json b/src/options.json index c29c58c..4873da4 100644 --- a/src/options.json +++ b/src/options.json @@ -5906,7 +5906,7 @@ "standard": { "title": "PHPCBF Standard", "type": "string", - "default": "", + "default": "PEAR", "description": "Standard name Squiz, PSR2, PSR1, PHPCS, PEAR, Zend, MySource... or path to CS rules. Will use local `phpcs.xml`, `phpcs.xml.dist`, `phpcs.ruleset.xml` or `ruleset.xml` if found in the project root. (Supported by PHPCBF)", "beautifiers": [ "PHPCBF"