Lint
This commit is contained in:
parent
dd6f63f357
commit
00fa7b1c8b
5 changed files with 7 additions and 14 deletions
|
|
@ -61,7 +61,6 @@ export class HistoryView extends ItemView {
|
||||||
}
|
}
|
||||||
|
|
||||||
element.createEl("span", {
|
element.createEl("span", {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
|
|
||||||
text: entry.relativePath
|
text: entry.relativePath
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,6 @@
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"lib": [
|
"lib": ["DOM", "ESNext"]
|
||||||
"DOM",
|
|
||||||
"ESNext"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,4 +25,4 @@
|
||||||
"webpack": "^5.98.0",
|
"webpack": "^5.98.0",
|
||||||
"webpack-cli": "^6.0.1"
|
"webpack-cli": "^6.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { RelativePath } from "../database/document-metadata";
|
import type { RelativePath } from "../database/document-metadata";
|
||||||
|
|
||||||
const locked = new Set<RelativePath>();
|
const locked = new Set<RelativePath>();
|
||||||
const waiters = new Map<RelativePath, (() => void)[]>();
|
const waiters = new Map<RelativePath, (() => void)[]>();
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,6 @@
|
||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"lib": [
|
"lib": ["DOM", "ESNext"]
|
||||||
"DOM",
|
}
|
||||||
"ESNext"
|
}
|
||||||
]
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue