Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iamvishnusankar committed Jul 3, 2023
1 parent 79d21a8 commit fb32e0e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 3 additions & 1 deletion examples/custom-overrides/next.config.js
@@ -1,4 +1,6 @@
export default {
const config = {
reactStrictMode: true,
trailingSlash: true,
}

export default config
4 changes: 3 additions & 1 deletion examples/with-next-sitemap-i18n/next.config.js
@@ -1,6 +1,8 @@
export default {
const config = {
i18n: {
locales: ['en-US', 'fr', 'nl-NL', 'nl-BE'],
defaultLocale: 'en-US',
},
}

export default config
6 changes: 5 additions & 1 deletion jest.config.js
@@ -1,6 +1,8 @@
import reporter from '@corex/jest/reporter.js'

process.env.TZ = 'UTC'
export default {

const config = {
...reporter,
verbose: true,
preset: 'ts-jest',
Expand All @@ -12,3 +14,5 @@ export default {
'!**/vendor/**',
],
}

export default config
4 changes: 3 additions & 1 deletion packages/next-sitemap/jest.config.js
@@ -1,5 +1,7 @@
import preset from '@corex/jest'

export default {
const config = {
...preset,
}

export default config

0 comments on commit fb32e0e

Please sign in to comment.