Skip to content

Commit

Permalink
fix lint settings
Browse files Browse the repository at this point in the history
  • Loading branch information
umutozel committed Feb 15, 2025
1 parent b51db2c commit 203201c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
const js = require('@eslint/js');
const ts = require('@typescript-eslint/eslint-plugin');
const tsParser = require('@typescript-eslint/parser');
const globals = require('globals');

module.exports = [
{
Expand All @@ -13,7 +14,9 @@ module.exports = [
parserOptions: {
project: './tsconfig.json',
},
globals: {},
globals: {
...globals.browser
},
},
plugins: {
'@typescript-eslint': ts,
Expand Down

0 comments on commit 203201c

Please sign in to comment.