2018-11-10 11:44:35 +03:00
|
|
|
{
|
2022-05-04 17:25:28 +03:00
|
|
|
"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",
|
2024-05-23 08:18:32 +03:00
|
|
|
"crates/swc_html_parser/tests/html5lib-tests",
|
|
|
|
"crates/swc_ecma_transforms_proposal/tests/decorator-tests"
|
2022-05-04 17:25:28 +03:00
|
|
|
],
|
|
|
|
"eslint.enable": false,
|
2023-01-26 05:09:36 +03:00
|
|
|
"rust-analyzer.check.command": "clippy",
|
|
|
|
"rust-analyzer.check.features": [
|
|
|
|
// We use this to make IDE faster
|
|
|
|
"rust-analyzer",
|
|
|
|
"rkyv-impl",
|
2024-07-15 12:53:09 +03:00
|
|
|
"debug",
|
|
|
|
"scoped"
|
2023-01-26 05:09:36 +03:00
|
|
|
],
|
|
|
|
"rust-analyzer.cargo.features": [
|
2022-05-04 17:25:28 +03:00
|
|
|
// We use this to make IDE faster
|
2022-09-24 06:33:47 +03:00
|
|
|
"rust-analyzer",
|
2022-10-14 02:34:30 +03:00
|
|
|
"rkyv-impl",
|
2024-07-15 12:53:09 +03:00
|
|
|
"debug",
|
|
|
|
"scoped"
|
2022-05-04 17:25:28 +03:00
|
|
|
]
|
2024-07-15 12:53:09 +03:00
|
|
|
}
|