Update rustfmt URL
This commit is contained in:
parent
9a9bec035e
commit
065f9d4a30
|
@ -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/):<br/>1. Install [SassConvert (`sass-convert`)](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) with `docker pull unibeautify/sass-convert`<br/><br/>:bookmark_tabs: Manually:<br/>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<br/> |
|
||||
| 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)** |
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/nrc/rustfmt"</code></pre>
|
||||
<pre><code class='coffeescript'>"https://github.com/rust-lang-nursery/rustfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
|
@ -201,4 +201,4 @@
|
|||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -379,7 +379,7 @@ Thank you.</p><h2 id="language-support">Language Support</h2><p>See <a href="htt
|
|||
<td>Rust</td>
|
||||
<td><code>Rust</code></td>
|
||||
<td><code>.rs</code>, <code>.rlib</code></td>
|
||||
<td><a href="https://github.com/nrc/rustfmt"><code>rustfmt</code></a> (Default)</td>
|
||||
<td><a href="https://github.com/rust-lang-nursery/rustfmt"><code>rustfmt</code></a> (Default)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sass</td>
|
||||
|
@ -623,4 +623,4 @@ and submit a <a href="https://help.github.com/articles/using-pull-requests/">Pul
|
|||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue