Skip to content

Commit

Permalink
fix: set ignorePatterns in eslintrc (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
haecheonlee authored Jun 6, 2024
1 parent d5362c0 commit 1624157
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ module.exports = {
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
parserOptions: {
sourceType: 'module'
sourceType: 'module',
},
env: {
node: true
}
node: true,
},
ignorePatterns: ['dist/**', 'node_modules/**'],
}

0 comments on commit 1624157

Please sign in to comment.