Skip to content

Commit 6bec791

Browse files
fix: removed terminal errors from .eslintrs.js file (#1295)
1 parent a7a92da commit 6bec791

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.eslintrc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
es2021: true,
44
node: true,
55
browser: true,
6-
"cypress/globals": true
6+
'cypress/globals': true,
77
},
88
settings: {
99
react: {
@@ -34,7 +34,10 @@ module.exports = {
3434

3535
'react/jsx-curly-spacing': ['error', { when: 'never', children: true }],
3636
indent: ['error', 2, { SwitchCase: 1 }],
37-
'linebreak-style': ['error', process.platform === 'win32' ? 'windows' : 'unix'],
37+
'linebreak-style': [
38+
'error',
39+
process.platform === 'win32' ? 'windows' : 'unix',
40+
],
3841
quotes: ['error', 'single'],
3942

4043
'jsx-quotes': ['error', 'prefer-single'],

0 commit comments

Comments
 (0)