From 7e958d0db0d4e6256308a509dcc6a2fa8c457aeb Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Sat, 15 Apr 2017 03:16:36 -0300 Subject: [PATCH] Update docs --- README.md | 4 ++-- src/beautifiers/nginx-beautify.coffee | 1 + src/beautifiers/pybeautifier.coffee | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b1a431c..b0f2e9f 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Some of the supported beautifiers are developed for Node.js and are automaticall | Latex Beautify | :x: | Go to https://github.com/cmhughes/latexindent.pl and follow the instructions. | | Lua beautifier | :x: | Go to https://www.perl.org/ and follow the instructions. | | Marko Beautifier | :white_check_mark: | Nothing! | -| Nginx Beautify | :white_check_mark: | Nothing! | +| Nginx Beautify | :x: | Go to https://github.com/denysvitali/nginxbeautify and follow the instructions. | | ocp-indent | :x: | Go to https://www.typerex.org/ocp-indent.html and follow the instructions. | | Perltidy | :x: | Go to http://perltidy.sourceforge.net/ and follow the instructions. | | PHP-CS-Fixer | :x: | Go to https://github.com/FriendsOfPHP/PHP-CS-Fixer and follow the instructions. | @@ -92,7 +92,7 @@ Some of the supported beautifiers are developed for Node.js and are automaticall | Pretty Diff | :white_check_mark: | Nothing! | | Pug Beautify | :white_check_mark: | Nothing! | | puppet-lint | :x: | Go to http://puppet-lint.com/ and follow the instructions. | -| pybeautifier | :white_check_mark: | Nothing! | +| pybeautifier | :x: | Go to https://github.com/guyskk/pybeautifier and follow the instructions. | | Remark | :white_check_mark: | Nothing! | | Rubocop | :x: | Go to https://github.com/bbatsov/rubocop and follow the instructions. | | Ruby Beautify | :x: | Go to https://github.com/erniebrodeur/ruby-beautify and follow the instructions. | diff --git a/src/beautifiers/nginx-beautify.coffee b/src/beautifiers/nginx-beautify.coffee index 088d7d8..2e41a4b 100644 --- a/src/beautifiers/nginx-beautify.coffee +++ b/src/beautifiers/nginx-beautify.coffee @@ -4,6 +4,7 @@ Beautifier = require('./beautifier') module.exports = class NginxBeautify extends Beautifier name: "Nginx Beautify" link: "https://github.com/denysvitali/nginxbeautify" + isPreInstalled: false options: { Nginx: { diff --git a/src/beautifiers/pybeautifier.coffee b/src/beautifiers/pybeautifier.coffee index 692a8fb..696428e 100644 --- a/src/beautifiers/pybeautifier.coffee +++ b/src/beautifiers/pybeautifier.coffee @@ -38,6 +38,7 @@ module.exports = class PythonBeautifier extends Beautifier name: "pybeautifier" link: "https://github.com/guyskk/pybeautifier" + isPreInstalled: false options: { Python: true