diff --git a/.eslintrc.json b/.eslintrc.json index 82a0c9e4..227b627e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -18,7 +18,7 @@ "plugins": ["@typescript-eslint"], "rules": { "@typescript-eslint/no-unused-vars": [ - "error", + "warn", { "argsIgnorePattern": "^_" } diff --git a/.prettierignore b/.prettierignore index ad17a14e..812c3232 100644 --- a/.prettierignore +++ b/.prettierignore @@ -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 diff --git a/rust-icon.png b/icon.png similarity index 100% rename from rust-icon.png rename to icon.png diff --git a/package.json b/package.json index 42baed29..ff858f4a 100644 --- a/package.json +++ b/package.json @@ -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" @@ -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" },