Skip to content

Commit

Permalink
chore: jest config
Browse files Browse the repository at this point in the history
  • Loading branch information
gafreax committed Jan 30, 2024
1 parent ad9ae18 commit c209736
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ module.exports = {
browser: true,
es2021: true
},
type: 'module',
extends: 'eslint:recommended',
overrides: [
{
env: {
node: true
node: true,
'jest/globals': true
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
Expand All @@ -24,5 +26,6 @@ module.exports = {
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
semi: ['error', 'never']
}
},
transform: {}
}
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default { transform: {} }

0 comments on commit c209736

Please sign in to comment.