Skip to content

Commit

Permalink
ESLint: Fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
Zarel committed Feb 26, 2025
1 parent a56f1f1 commit 8c32fab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
import { configs, configure, globals } from './eslint-ps-standard.mjs';

export default configure([
{
ignores: [
'.dist',
],
},
{
name: "JavaScript",
files: [
Expand Down Expand Up @@ -38,6 +43,9 @@ export default configure([
},
{
name: "TypeScript tests",
files: [
"**/*.test.ts",
],
rules: {
"@typescript-eslint/restrict-template-expressions": "off",
},
Expand Down

0 comments on commit 8c32fab

Please sign in to comment.