Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
fix: fixed linting and module resolutions
Browse files Browse the repository at this point in the history
  • Loading branch information
micheleriva committed Jul 26, 2021
1 parent 4ff5119 commit ec1cc27
Show file tree
Hide file tree
Showing 3 changed files with 689 additions and 2,037 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ module.exports = {
'react/no-unescaped-entities': 0,
},
plugins: ['simple-import-sort', 'jest'],
ignorePatterns: ['node_modules'],
ignorePatterns: ['node_modules', '**/node_modules/**'],
};
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"jsx": "preserve"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"exclude": ["node_modules", "**/node_modules/**"]
}

0 comments on commit ec1cc27

Please sign in to comment.