mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 00:32:15 +03:00
b6333dbcfc
**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
41 lines
1.0 KiB
JSON
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"
|
|
]
|
|
} |