Chore: make eslint happy
Some checks failed
Build / Build (push) Has been cancelled
Build / Diff output (push) Has been cancelled
Build / Deploy to Cloudflare Pages (push) Has been cancelled
Build / Deploy to GitHub and GitLab (push) Has been cancelled

This commit is contained in:
SukkaW
2025-02-12 14:11:55 +08:00
parent 0073a9c7d5
commit 3a9b874be2
5 changed files with 160 additions and 92 deletions

View File

@@ -21,7 +21,7 @@ import { SOURCE_DIR } from './constants/dir';
const extname = path.extname(filepath);
return !(extname === '.js' || extname === '.ts');
return extname !== '.js' && extname !== '.ts';
})
.crawl(SOURCE_DIR)
.withPromise();