See #1212. Update docs for new hh_format beautifier.

This commit is contained in:
Glavin Wiechert 2016-12-30 01:58:15 -04:00
parent 4b1a1a8292
commit cb052d868b
4 changed files with 18 additions and 15 deletions

View File

@ -101,7 +101,7 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti
| OCaml | `OCaml` |`.ml` | [`ocp-indent`](https://www.typerex.org/ocp-indent.html) (Default) | | OCaml | `OCaml` |`.ml` | [`ocp-indent`](https://www.typerex.org/ocp-indent.html) (Default) |
| Pawn | `Pawn` | | [`Uncrustify`](https://github.com/uncrustify/uncrustify) (Default) | | Pawn | `Pawn` | | [`Uncrustify`](https://github.com/uncrustify/uncrustify) (Default) |
| Perl | `Perl`, `Perl 6` |`.pl` | [`Perltidy`](http://perltidy.sourceforge.net/) (Default) | | Perl | `Perl`, `Perl 6` |`.pl` | [`Perltidy`](http://perltidy.sourceforge.net/) (Default) |
| PHP | `PHP` |`.php`, `.module`, `.inc` | [`PHP-CS-Fixer`](https://github.com/FriendsOfPHP/PHP-CS-Fixer) (Default), [`PHPCBF`](http://php.net/manual/en/install.php) | | PHP | `PHP` |`.php`, `.module`, `.inc` | [`PHP-CS-Fixer`](https://github.com/FriendsOfPHP/PHP-CS-Fixer) (Default), [`PHPCBF`](http://php.net/manual/en/install.php), [`hh_format`](http://hhvm.com/) |
| Puppet | `Puppet` |`.pp` | [`puppet-lint`](http://puppet-lint.com/) (Default) | | Puppet | `Puppet` |`.pp` | [`puppet-lint`](http://puppet-lint.com/) (Default) |
| Python | `Python` |`.py` | [`autopep8`](https://github.com/hhatto/autopep8) (Default), [`yapf`](https://github.com/google/yapf) | | Python | `Python` |`.py` | [`autopep8`](https://github.com/hhatto/autopep8) (Default), [`yapf`](https://github.com/google/yapf) |
| R | `R` |`.r`, `.R` | [`formatR`](https://github.com/yihui/formatR) (Default) | | R | `R` |`.r`, `.R` | [`formatR`](https://github.com/yihui/formatR) (Default) |

View File

@ -9043,18 +9043,18 @@ Specify a configuration file which will override the default name of .perltidyrc
#### [PHP](#php) #### [PHP](#php)
**Supported Beautifiers**: [`PHP-CS-Fixer`](#php-cs-fixer) [`PHPCBF`](#phpcbf) **Supported Beautifiers**: [`hh_format`](#hh_format) [`PHP-CS-Fixer`](#php-cs-fixer) [`PHPCBF`](#phpcbf)
| Option | PHP-CS-Fixer | PHPCBF | | Option | PHP-CS-Fixer | PHPCBF | hh_format |
| --- | --- | --- | | --- | --- | --- | --- |
| `disabled` | :white_check_mark: | :white_check_mark: | | `disabled` | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `default_beautifier` | :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: | | `beautify_on_save` | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `cs_fixer_path` | :white_check_mark: | :x: | | `cs_fixer_path` | :white_check_mark: | :x: | :x: |
| `fixers` | :white_check_mark: | :x: | | `fixers` | :white_check_mark: | :x: | :x: |
| `level` | :white_check_mark: | :x: | | `level` | :white_check_mark: | :x: | :x: |
| `phpcbf_path` | :white_check_mark: | :x: | | `phpcbf_path` | :white_check_mark: | :x: | :x: |
| `standard` | :white_check_mark: | :white_check_mark: | | `standard` | :white_check_mark: | :white_check_mark: | :x: |
**Description**: **Description**:
@ -9085,7 +9085,7 @@ Disable PHP Beautification
**Type**: `string` **Type**: `string`
**Enum**: `PHP-CS-Fixer` `PHPCBF` **Enum**: `hh_format` `PHP-CS-Fixer` `PHPCBF`
**Description**: **Description**:

View File

@ -290,7 +290,8 @@
"cljfmt", "cljfmt",
"bash", "bash",
"beautysh", "beautysh",
"glsl" "glsl",
"hh_format"
], ],
"devDependencies": { "devDependencies": {
"coffeelint": "^1.10.1", "coffeelint": "^1.10.1",

View File

@ -19,6 +19,8 @@ module.exports = {
"inc" "inc"
] ]
defaultBeautifier: "PHP-CS-Fixer"
options: options:
cs_fixer_path: cs_fixer_path:
title: "PHP-CS-Fixer Path" title: "PHP-CS-Fixer Path"