FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
coreutils/.devcontainer/devcontainer.json at main · uutils/coreutils · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
uutils
/
coreutils
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
2k
Star
24k
Code
Issues
749
Pull requests
395
Discussions
Actions
Projects
Wiki
Security and quality
56
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
coreutils
/
.devcontainer
/
devcontainer.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (50 loc) · 1.56 KB
Breadcrumbs
coreutils
/
.devcontainer
/
devcontainer.json
Copy path
File metadata and controls
50 lines (50 loc) · 1.56 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name"
:
"
uutils-devcontainer
"
,
"build"
: {
"dockerfile"
:
"
Dockerfile
"
},
"features"
: {
"ghcr.io/devcontainers/features/rust:1"
:
{
"version"
:
"
latest
"
,
"profile"
:
"
default
"
,
"components"
:
"
llvm-tools-preview
"
}
},
"onCreateCommand"
: {
"install pre-commit hooks"
:
"
pre-commit install
"
,
"update permissions for gnu coreutils volume"
:
"
sudo chown vscode:vscode ${containerWorkspaceFolder}/../gnu
"
},
"mounts"
: [
{
"source"
:
"
devcontainer-gnu-coreutils-${devcontainerId}
"
,
"target"
:
"
${containerWorkspaceFolder}/../gnu
"
,
"type"
:
"
volume
"
}
],
"customizations"
: {
"vscode"
: {
"extensions"
: [
"
streetsidesoftware.code-spell-checker
"
,
"
foxundermoon.shell-format
"
,
"
ms-vscode.cpptools
"
],
"settings"
: {
"rust-analyzer.check.command"
:
"
clippy
"
,
"rust-analyzer.debug.engine"
:
"
ms-vscode.cpptools
"
,
"rust-analyzer.debug.engineSettings"
: {
"cppdbg"
: {
"miDebuggerPath"
:
"
rust-gdb
"
,
"setupCommands"
: [
{
"description"
:
"
Enable pretty-printing for gdb
"
,
"text"
:
"
-enable-pretty-printing
"
,
"ignoreFailures"
:
false
}
]
}
}
}
}
}
}
Back
|
FazBrowse Home
|
New Git URL