Skip to content

Commit

Permalink
feat: Enable the "Quick Fix" feature by default (#182)
Browse files Browse the repository at this point in the history
Fix #161
  • Loading branch information
timonwong authored Mar 15, 2021
1 parent 7b2a25a commit eb64cc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Default options are:
```javascript
{
"shellcheck.enable": true,
"shellcheck.enableQuickFix": false,
"shellcheck.enableQuickFix": true,
"shellcheck.run": "onType",
"shellcheck.executablePath": "", // Priority: user defined > bundled shellcheck binary > "shellcheck"
"shellcheck.exclude": [],
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
"default": true
},
"shellcheck.enableQuickFix": {
"description": "Whether to enable experimental \"Quick Fix\" feature.",
"description": "Whether to enable the \"Quick Fix\" feature.",
"type": "boolean",
"scope": "resource",
"default": false
"default": true
},
"shellcheck.executablePath": {
"description": "Path to the shellcheck executable (builtin binaries will be used if empty).",
Expand Down

0 comments on commit eb64cc3

Please sign in to comment.