-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #840 from ethereum/fe-v2
Fe v2
- Loading branch information
Showing
693 changed files
with
65,566 additions
and
976 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "fe-lang-v2", | ||
"image": "mcr.microsoft.com/devcontainers/rust:latest", | ||
"features": { | ||
"ghcr.io/devcontainers/features/node:1": {}, | ||
"ghcr.io/devcontainers/features/github-cli:1": {}, | ||
}, | ||
"extensions": [ | ||
"GitHub.vscode-github-actions", | ||
"ms-vsliveshare.vsliveshare", | ||
"vadimcn.vscode-lldb", | ||
"matklad.rust-analyzer", | ||
"serayuzgur.crates", | ||
"tamasfe.even-better-toml", | ||
"usernamehw.errorlens", | ||
"aaron-bond.better-comments", | ||
"yzhang.markdown-all-in-one" | ||
], | ||
"settings": { | ||
"explorer.compactFolders": false, | ||
"editor.rulers": [ | ||
80 | ||
], | ||
"workbench.colorTheme": "Default Dark+", | ||
"workbench.preferredDarkColorTheme": "Monokai", | ||
"workbench.colorCustomizations": { | ||
"editorRuler.foreground": "#5f5f62" | ||
}, | ||
"workbench.activityBar.location": "top" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
tarpaulin-report.html | ||
/output | ||
/docs/tmp_snippets | ||
.vscode | ||
.vscode | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}/crates/language-server/editors/vscode", | ||
"${workspaceFolder}/crates/", | ||
"--disable-extensions" | ||
], | ||
"name": "Launch Fe VSCode Extension", | ||
"outFiles": [ | ||
"${workspaceFolder}/crates/language-server/editors/vscode/out/**/*.js" | ||
], | ||
"preLaunchTask": "compile-vscode-extension", | ||
"request": "launch", | ||
"type": "extensionHost", | ||
"env": { | ||
"RUST_BACKTRACE": "full", | ||
"NODE_ENV": "development" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"editor.tabSize": 4, | ||
"rust-analyzer.linkedProjects": [ | ||
"./crates/language-server/Cargo.toml" | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "compile-vscode-extension", | ||
"type": "shell", | ||
"command": "npm install && npm run compile", | ||
"options": { | ||
"cwd": "${workspaceFolder}/crates/language-server/editors/vscode" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
Oops, something went wrong.