mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 22:13:39 +00:00
fix formatting
This commit is contained in:
parent
983ae1b1c9
commit
58e5452a9b
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ export class Config {
|
||||||
if (!item) return item;
|
if (!item) return item;
|
||||||
const fixRecord = (r: Record<string, any>) => {
|
const fixRecord = (r: Record<string, any>) => {
|
||||||
for (const key in r) {
|
for (const key in r) {
|
||||||
if (typeof r[key] !== 'string') {
|
if (typeof r[key] !== "string") {
|
||||||
r[key] = String(r[key]);
|
r[key] = String(r[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue