autogenerated files

This commit is contained in:
Jonid Bendo 2017-04-21 16:07:32 +02:00
parent 6f2354d375
commit 267082dc33
2 changed files with 60 additions and 3 deletions

View File

@ -9570,6 +9570,7 @@ Specify a configuration file which will override the default name of .perltidyrc
| `disabled` | :white_check_mark: | :white_check_mark: | :white_check_mark: | | `disabled` | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `default_beautifier` | :white_check_mark: | :white_check_mark: | :white_check_mark: | | `default_beautifier` | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `beautify_on_save` | :white_check_mark: | :white_check_mark: | :white_check_mark: | | `beautify_on_save` | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `allow_risky` | :white_check_mark: | :x: | :x: |
| `cs_fixer_path` | :white_check_mark: | :x: | :x: | | `cs_fixer_path` | :white_check_mark: | :x: | :x: |
| `cs_fixer_version` | :white_check_mark: | :x: | :x: | | `cs_fixer_version` | :white_check_mark: | :x: | :x: |
| `fixers` | :white_check_mark: | :x: | :x: | | `fixers` | :white_check_mark: | :x: | :x: |
@ -9637,6 +9638,34 @@ Automatically beautify PHP files on save
2. Go into *Packages* and search for "*Atom Beautify*" package. 2. Go into *Packages* and search for "*Atom Beautify*" package.
3. Find the option "*Beautify On Save*" and change it to your desired configuration. 3. Find the option "*Beautify On Save*" and change it to your desired configuration.
##### [Allow risky rules](#allow-risky-rules)
**Namespace**: `php`
**Key**: `allow_risky`
**Default**: `no`
**Type**: `string`
**Enum**: `no` `yes`
**Supported Beautifiers**: [`PHP-CS-Fixer`](#php-cs-fixer)
**Description**:
allow risky rules to be applied! (Supported by PHP-CS-Fixer)
**Example `.jsbeautifyrc` Configuration**
```json
{
"php": {
"allow_risky": "no"
}
}
```
##### [PHP-CS-Fixer Path](#php-cs-fixer-path) ##### [PHP-CS-Fixer Path](#php-cs-fixer-path)
**Namespace**: `php` **Namespace**: `php`
@ -17421,6 +17450,34 @@ Add rule(s). i.e. line_ending,-full_opening_tag,@PSR2 (PHP-CS-Fixer 2 only) (Sup
} }
``` ```
##### [Allow risky rules](#allow-risky-rules)
**Namespace**: `php`
**Key**: `allow_risky`
**Default**: `no`
**Type**: `string`
**Enum**: `no` `yes`
**Supported Beautifiers**: [`PHP-CS-Fixer`](#php-cs-fixer)
**Description**:
allow risky rules to be applied! (Supported by PHP-CS-Fixer)
**Example `.jsbeautifyrc` Configuration**
```json
{
"php": {
"allow_risky": "no"
}
}
```
##### [PHPCBF Path](#phpcbf-path) ##### [PHPCBF Path](#phpcbf-path)
**Namespace**: `php` **Namespace**: `php`

View File

@ -5860,6 +5860,7 @@
"no", "no",
"yes" "yes"
], ],
"description": "allow risky rules to be applied! (Supported by PHP-CS-Fixer)",
"beautifiers": [ "beautifiers": [
"PHP-CS-Fixer" "PHP-CS-Fixer"
], ],
@ -5867,8 +5868,7 @@
"language": { "language": {
"name": "PHP", "name": "PHP",
"namespace": "php" "namespace": "php"
}, }
"description": "allow risky rules to be applied!"
}, },
"phpcbf_path": { "phpcbf_path": {
"title": "PHPCBF Path", "title": "PHPCBF Path",