ESLint: Fix config
Some checks failed
Node.js CI / build (18.x) (push) Has been cancelled
Node.js CI / build (20.x) (push) Has been cancelled

This commit is contained in:
Guangcong Luo 2025-02-25 21:31:52 -08:00
parent a56f1f160f
commit 8c32fabe67

View File

@ -3,6 +3,11 @@
import { configs, configure, globals } from './eslint-ps-standard.mjs';
export default configure([
{
ignores: [
'.dist',
],
},
{
name: "JavaScript",
files: [
@ -38,6 +43,9 @@ export default configure([
},
{
name: "TypeScript tests",
files: [
"**/*.test.ts",
],
rules: {
"@typescript-eslint/restrict-template-expressions": "off",
},