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

Minor improvements #841

Merged
merged 4 commits into from
Aug 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
"warn",
{
"argsIgnorePattern": "^_"
}
Expand Down
7 changes: 6 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# FIXME: Only ignore the pending changes to be merged into this extension
rust-analyzer/
/rust-analyzer

# From .gitignore
out
node_modules
.vscode-test
File renamed without changes
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Rust for Visual Studio Code (powered by Rust Language Server/Rust Analyzer). Provides lints, code completion and navigation, formatting and more.",
"version": "0.7.8",
"publisher": "rust-lang",
"icon": "rust-icon.png",
"icon": "icon.png",
"galleryBanner": {
"color": "#336356",
"theme": "dark"
Expand Down Expand Up @@ -45,7 +45,7 @@
"watch": "tsc -watch -p ./",
"lint": "eslint --ext ts src",
"test": "node ./out/test/runTest.js",
"prettier": "prettier **/*.ts",
"prettier": "prettier \"**/*.ts\"",
"check:version": "node cmd/check-version.js",
"installDevExtension": "npm install && ./node_modules/.bin/vsce package -o ./out/rls-vscode-dev.vsix && code --install-extension ./out/rls-vscode-dev.vsix"
},
Expand Down