Skip to content

Commit d76c021

Browse files
committed
Merge branch 'main' of https://github.com/calblueprint/immigration-justice-project into 2catherine/ijp-18-set-up-auth-settings
2 parents e5e27f9 + 2357c95 commit d76c021

File tree

12 files changed

+2810
-193
lines changed

12 files changed

+2810
-193
lines changed

.eslintrc.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
module.exports = {
2-
extends: ['@calblueprint/eslint-config-react'],
2+
extends: [
3+
'@calblueprint/eslint-config-react',
4+
'plugin:@typescript-eslint/recommended',
5+
],
36
rules: {
47
// Add any custom rules here
58
// Disable the rule that requires React to be in scope -- we don't need this with React 18
69
'react/react-in-jsx-scope': 'off',
710
'react/jsx-uses-react': 'off',
811
},
12+
settings: {
13+
'import/resolver': {
14+
typescript: {}
15+
}
16+
},
17+
plugins: [
18+
'@typescript-eslint',
19+
'import'
20+
]
921
};

next.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {}
2+
const nextConfig = {
3+
compiler: {
4+
styledComponents: true
5+
}
6+
}
37

48
module.exports = nextConfig

0 commit comments

Comments
 (0)