diff --git a/README.md b/README.md index a3026aa..225c637 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ Some of the supported beautifiers are developed for Node.js and are automaticall | Remark | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! | | Rubocop | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/bbatsov/rubocop and follow the instructions. | | Ruby Beautify | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/erniebrodeur/ruby-beautify and follow the instructions. | -| rustfmt | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/nrc/rustfmt and follow the instructions. | +| rustfmt | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/rust-lang-nursery/rustfmt and follow the instructions. | | SassConvert | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):
1. Install [SassConvert (`sass-convert`)](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) with `docker pull unibeautify/sass-convert`

:bookmark_tabs: Manually:
1. Install [SassConvert (`sass-convert`)](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) by following http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax
| | sqlformat | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/andialbrecht/sqlparse and follow the instructions. | | stylish-haskell | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/jaspervdj/stylish-haskell and follow the instructions. | @@ -171,7 +171,7 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti | R | `R` |`.r`, `.R` | **[`formatR`](https://github.com/yihui/formatR)** | | Riot.js | `Riot.js`, `HTML (Riot Tag)` |`.tag` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** | | Ruby | `Ruby`, `Ruby on Rails` |`.rb` | **[`Rubocop`](https://github.com/bbatsov/rubocop)**, [`Ruby Beautify`](https://github.com/erniebrodeur/ruby-beautify) | -| Rust | `Rust` |`.rs`, `.rlib` | **[`rustfmt`](https://github.com/nrc/rustfmt)** | +| Rust | `Rust` |`.rs`, `.rlib` | **[`rustfmt`](https://github.com/rust-lang-nursery/rustfmt)** | | Sass | `Sass` |`.sass` | **[`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax)** | | SCSS | `SCSS` |`.scss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) | | Spacebars | `Spacebars` | | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** | diff --git a/docs/code/class/Rustfmt.html b/docs/code/class/Rustfmt.html index 4efbbfe..c2cd37e 100644 --- a/docs/code/class/Rustfmt.html +++ b/docs/code/class/Rustfmt.html @@ -54,7 +54,7 @@ =
-
"https://github.com/nrc/rustfmt"
+
"https://github.com/rust-lang-nursery/rustfmt"
@@ -201,4 +201,4 @@ - \ No newline at end of file + diff --git a/docs/code/extra/README.md.html b/docs/code/extra/README.md.html index 9d6a562..26825d4 100644 --- a/docs/code/extra/README.md.html +++ b/docs/code/extra/README.md.html @@ -379,7 +379,7 @@ Thank you.

Language Support

See rustfmt (Default) +rustfmt (Default) Sass @@ -623,4 +623,4 @@ and submit a Pul - \ No newline at end of file + diff --git a/src/beautifiers/rustfmt.coffee b/src/beautifiers/rustfmt.coffee index 8277653..960344c 100644 --- a/src/beautifiers/rustfmt.coffee +++ b/src/beautifiers/rustfmt.coffee @@ -1,5 +1,5 @@ ### -Requires https://github.com/nrc/rustfmt +Requires https://github.com/rust-lang-nursery/rustfmt ### "use strict" @@ -10,7 +10,7 @@ versionCheckState = false module.exports = class Rustfmt extends Beautifier name: "rustfmt" - link: "https://github.com/nrc/rustfmt" + link: "https://github.com/rust-lang-nursery/rustfmt" isPreInstalled: false options: { @@ -21,7 +21,7 @@ module.exports = class Rustfmt extends Beautifier cwd = context.filePath and path.dirname context.filePath program = options.rustfmt_path or "rustfmt" help = { - link: "https://github.com/nrc/rustfmt" + link: "https://github.com/rust-lang-nursery/rustfmt" program: "rustfmt" pathOption: "Rust - Rustfmt Path" }