asterinas/.vscode/settings.json

33 lines
935 B
JSON

{
"rust-analyzer.cargo.target": "x86_64-unknown-none",
"rust-analyzer.check.extraEnv": {
"RUSTFLAGS": "--check-cfg cfg(ktest) --cfg ktest"
},
"rust-analyzer.check.overrideCommand": [
"cargo",
"check",
"--quiet",
"--message-format=json",
"--manifest-path",
"kernel/Cargo.toml",
"--target",
"x86_64-unknown-none",
"-Zbuild-std=core,alloc,compiler_builtins",
"-Zbuild-std-features=compiler-builtins-mem"
],
"rust-analyzer.showUnlinkedFileNotification": false,
"search.exclude": {
"**/*.code-search": false,
"**/bower_components": false,
"**/node_modules": false
},
"search.useIgnoreFiles": false,
"files.exclude": {
"**/.DS_Store": false,
"**/.git": false,
"**/.hg": false,
"**/.svn": false,
"**/CVS": false,
"**/Thumbs.db": false
}
}