Skip to content

Commit

Permalink
chore: add setting to prevent accidental editing of dependencies (lea…
Browse files Browse the repository at this point in the history
…nprover-community#10320)

Adds `**/.lake/**` and `**/.elan/**` to a readonly include list in the VSCode workspace settings. This should prevent users from accidentally editing files in dependencies they might navigate to in VSCode.
  • Loading branch information
BoltonBailey committed Feb 13, 2024
1 parent 3cb73ae commit 43b760b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@
"githubPullRequests.ignoredPullRequestBranches": [
"master"
],
"git.ignoreLimitWarning": true
"git.ignoreLimitWarning": true,
"files.readonlyInclude": {
"**/.elan/**": true,
"**/.lake/**": true
}
}

0 comments on commit 43b760b

Please sign in to comment.