From 3a36f2b23519f09750f1b38a4c51df4802745aaa Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Mon, 27 Aug 2018 17:38:39 +0200 Subject: [PATCH] Add `rust.rustfmt_path` For https://github.com/rust-lang-nursery/rls/pull/990. --- package.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package.json b/package.json index fa3a7b02..b5b5b983 100644 --- a/package.json +++ b/package.json @@ -367,6 +367,15 @@ "default": null, "description": "When specified, it places the generated analysis files at the specified target directory. By default it is placed target/rls directory.", "scope": "resource" + }, + "rust.rustfmt_path": { + "type": [ + "string", + "null" + ], + "default": null, + "description": "When specified, RLS will use the Rustfmt pointed at the path instead of the bundled one", + "scope": "resource" } } }