Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-torabiv committed Nov 28, 2024
1 parent 7b63203 commit 85b3d80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
],
rules: {
'no-unused-vars': 'off', // Disabling base rule as it's handled by @typescript-eslint/no-unused-vars
'no-console': 'warn', // Allow console with warning to identify usage
'no-console': 'off', // Allow console with warning to identify usage
'@typescript-eslint/explicit-module-boundary-types': 'off', // Disabling requirement for explicit return types on functions
'react/no-unescaped-entities': 'off', // Disable warnings for unescaped entities in JSX
'react/display-name': 'off', // Disable display name rule for React components
Expand All @@ -35,7 +35,7 @@ module.exports = {

// Disable rule for unused vars but enable warning for unused imports and vars with specific patterns
'@typescript-eslint/no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'warn',
'unused-imports/no-unused-imports': 'off',
'unused-imports/no-unused-vars': [
'warn',
{
Expand Down
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
output: 'export',
reactStrictMode: false,
swcMinify: true,
trailingSlash: true,
Expand Down

0 comments on commit 85b3d80

Please sign in to comment.