Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 526556a

Browse files
authored
Merge pull request #841 from Xanewok/small-improvements
Minor improvements
2 parents bb3bd17 + 23a0b5f commit 526556a

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"plugins": ["@typescript-eslint"],
1919
"rules": {
2020
"@typescript-eslint/no-unused-vars": [
21-
"error",
21+
"warn",
2222
{
2323
"argsIgnorePattern": "^_"
2424
}

.prettierignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# FIXME: Only ignore the pending changes to be merged into this extension
2-
rust-analyzer/
2+
/rust-analyzer
3+
4+
# From .gitignore
5+
out
6+
node_modules
7+
.vscode-test

rust-icon.png renamed to icon.png

File renamed without changes.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Rust for Visual Studio Code (powered by Rust Language Server/Rust Analyzer). Provides lints, code completion and navigation, formatting and more.",
55
"version": "0.7.8",
66
"publisher": "rust-lang",
7-
"icon": "rust-icon.png",
7+
"icon": "icon.png",
88
"galleryBanner": {
99
"color": "#336356",
1010
"theme": "dark"
@@ -45,7 +45,7 @@
4545
"watch": "tsc -watch -p ./",
4646
"lint": "eslint --ext ts src",
4747
"test": "node ./out/test/runTest.js",
48-
"prettier": "prettier **/*.ts",
48+
"prettier": "prettier \"**/*.ts\"",
4949
"check:version": "node cmd/check-version.js",
5050
"installDevExtension": "npm install && ./node_modules/.bin/vsce package -o ./out/rls-vscode-dev.vsix && code --install-extension ./out/rls-vscode-dev.vsix"
5151
},

0 commit comments

Comments
 (0)