swc/.vscode/settings.json
Donny/강동윤 b6333dbcfc
feat(allocator): Implement default mode (#9242)
**Description:**

In the default mode, `Box<T>` and `Vec<T>` should work just like them from std.

**Related issue:**

 - This PR is part of https://github.com/swc-project/swc/pull/9230
2024-07-15 18:53:09 +09:00

41 lines
1.0 KiB
JSON

{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.bk": true,
"**/target": true
},
"[rust]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"editor.formatOnSave": true,
"git.ignoreLimitWarning": true,
"git.autoRepositoryDetection": false,
"git.ignoredRepositories": [
"crates/swc_ecma_parser/tests/test262-parser",
"crates/swc_html_parser/tests/html5lib-tests",
"crates/swc_ecma_transforms_proposal/tests/decorator-tests"
],
"eslint.enable": false,
"rust-analyzer.check.command": "clippy",
"rust-analyzer.check.features": [
// We use this to make IDE faster
"rust-analyzer",
"rkyv-impl",
"debug",
"scoped"
],
"rust-analyzer.cargo.features": [
// We use this to make IDE faster
"rust-analyzer",
"rkyv-impl",
"debug",
"scoped"
]
}