Skip to content

Commit

Permalink
eslint-disable no-unused-expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobbykumar706584 committed May 4, 2022
1 parent 52eae1b commit d5a0b04
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"rules": {
"react/react-in-jsx-scope": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"max-len": "off",
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"prefer-destructuring": "off",
Expand Down
1 change: 0 additions & 1 deletion renderer/src/components/Validation/helper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* eslint-disable no-useless-escape */
/* eslint-disable no-unused-expressions */
/* eslint-disable no-return-assign */
export const validEmailRegex = RegExp(
/^(([^<>()\[\]\.,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i,
Expand Down
1 change: 0 additions & 1 deletion renderer/src/core/projects/fectchParseFiles.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable no-unused-expressions */
import Parse from 'parse';
import * as logger from '../../logger';

Expand Down

0 comments on commit d5a0b04

Please sign in to comment.