aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-04-23 06:52:24 -0500
committerLibravatar GitHub <noreply@github.com>2022-04-23 11:52:24 +0000
commit0c322a7a4ce2474be69a70823ba5f1ea83162e9c (patch)
tree325040af714bb70067c25662392babc7d3e23108 /.eslintrc.js
parentUpdate the build script for Windows (Powershell) and normalized with the unix... (diff)
downloadferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.tar.gz
ferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.tar.zst
ferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.zip
Update node modules (#31)
* Suppress eslint rules as warnings (dont turn off completely)
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 779a3d3fc..6caa782f5 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -68,11 +68,14 @@ module.exports = {
68 'import/no-unresolved': 0, 68 'import/no-unresolved': 0,
69 'import/prefer-default-export': 0, 69 'import/prefer-default-export': 0,
70 // eslint-plugin-react 70 // eslint-plugin-react
71 'react/default-props-match-prop-types': 1,
71 'react/destructuring-assignment': 0, 72 'react/destructuring-assignment': 0,
72 'react/button-has-type': 0, 73 'react/button-has-type': 0,
73 'react/forbid-prop-types': 0, 74 'react/forbid-prop-types': 0,
74 'react/jsx-curly-newline': 0, 75 'react/jsx-curly-newline': 0,
76 'react/no-unused-prop-types': 1,
75 'react/react-in-jsx-scope': 0, 77 'react/react-in-jsx-scope': 0,
78 'react/require-default-props': 1,
76 'react/jsx-no-bind': 0, 79 'react/jsx-no-bind': 0,
77 'react/jsx-no-target-blank': 0, 80 'react/jsx-no-target-blank': 0,
78 'react/jsx-props-no-spreading': 0, 81 'react/jsx-props-no-spreading': 0,