Skip to content

Commit

Permalink
fix: removed terminal errors from .eslintrs.js file (#1295)
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaMajmudar authored Feb 1, 2025
1 parent a7a92da commit 6bec791
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
es2021: true,
node: true,
browser: true,
"cypress/globals": true
'cypress/globals': true,
},
settings: {
react: {
Expand Down Expand Up @@ -34,7 +34,10 @@ module.exports = {

'react/jsx-curly-spacing': ['error', { when: 'never', children: true }],
indent: ['error', 2, { SwitchCase: 1 }],
'linebreak-style': ['error', process.platform === 'win32' ? 'windows' : 'unix'],
'linebreak-style': [
'error',
process.platform === 'win32' ? 'windows' : 'unix',
],
quotes: ['error', 'single'],

'jsx-quotes': ['error', 'prefer-single'],
Expand Down

0 comments on commit 6bec791

Please sign in to comment.