Skip to content

Commit

Permalink
adds *.t.err to file associations (vercel#8920)
Browse files Browse the repository at this point in the history
When you run integrations tests and there's an error it creates *.t.err
files in the cram format. With this file association added, now those
files will be correctly associated and therefore get syntax highlighting
and all that good stuff.
  • Loading branch information
dimitropoulos authored Aug 2, 2024
1 parent 7528bab commit 912452f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"debug.javascript.unmapMissingSources": true,
"files.associations": {
"libturbo.h": "c",
"turbo.json": "jsonc"
"turbo.json": "jsonc",
"*.t.err": "cram"
},
"[cram]": {
"editor.trimAutoWhitespace": false,
Expand Down

0 comments on commit 912452f

Please sign in to comment.