mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
a86e9f3bb5
**Related issue:** - x-ref: https://vercel.slack.com/archives/C04DUD7EB1B/p1693911653100299?thread_ts=1693819683.070959&cid=C04DUD7EB1B
38 lines
966 B
JSON
38 lines
966 B
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"
|
|
],
|
|
"eslint.enable": false,
|
|
"rust-analyzer.check.command": "clippy",
|
|
"rust-analyzer.check.features": [
|
|
// We use this to make IDE faster
|
|
"rust-analyzer",
|
|
"rkyv-impl",
|
|
"debug"
|
|
],
|
|
"rust-analyzer.cargo.features": [
|
|
// We use this to make IDE faster
|
|
"rust-analyzer",
|
|
"rkyv-impl",
|
|
"debug"
|
|
]
|
|
} |