Add no-misused/floating-promises lint rule

This commit is contained in:
Fedor Indutny 2022-12-21 10:41:48 -08:00 committed by GitHub
parent 1a68c3db62
commit ed271d92ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
150 changed files with 1296 additions and 991 deletions

View file

@ -4,11 +4,11 @@
import type { StorageAccessType } from '../types/Storage.d';
// Matching window.storage.put API
export function put<K extends keyof StorageAccessType>(
export async function put<K extends keyof StorageAccessType>(
key: K,
value: StorageAccessType[K]
): void {
window.storage.put(key, value);
): Promise<void> {
await window.storage.put(key, value);
}
export async function remove(key: keyof StorageAccessType): Promise<void> {