Skip to content

Commit a2f208a

Browse files
authored
Merge pull request #16 from James-Cross/clean-up-files
chore: update dependencies and ESLint configuration
2 parents 9283385 + 82a826b commit a2f208a

File tree

6 files changed

+580
-702
lines changed

6 files changed

+580
-702
lines changed

eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
.next/
3+
out/
4+
coverage/
5+
public/

eslintrc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['next', 'next/core-web-vitals'],
4+
rules: {
5+
// Custom rules can be added here
6+
'react/jsx-key': 'warn',
7+
'no-console': ['warn', { allow: ['warn', 'error'] }],
8+
'@next/next/no-img-element': 'off'
9+
}
10+
};

0 commit comments

Comments
 (0)