summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-05-18 11:04:45 -0300
committerSebastian <sebasjm@gmail.com>2022-05-18 11:04:45 -0300
commitcbf5b9bed271e43290949a27a3032a1f116c86dd (patch)
tree389b7e30d1516130a4b3842743b285fdf9caaa3a /.eslintrc.js
parente4ea2019430fb3c4b788f67427fbd743f604b7e5 (diff)
downloadwallet-core-cbf5b9bed271e43290949a27a3032a1f116c86dd.tar.gz
wallet-core-cbf5b9bed271e43290949a27a3032a1f116c86dd.tar.bz2
wallet-core-cbf5b9bed271e43290949a27a3032a1f116c86dd.zip
using namespaces for good
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 01e64163d..5e5424b09 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,7 +1,7 @@
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
- plugins: ["import","@typescript-eslint",
+ plugins: ["import", "@typescript-eslint",
"react",
"react-hooks",
],
@@ -23,6 +23,7 @@ module.exports = {
"prefer-const": ["warn", { destructuring: "all" }],
"no-prototype-builtins": "off",
"@typescript-eslint/camelcase": "off",
+ "@typescript-eslint/no-namespace": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
@@ -37,7 +38,7 @@ module.exports = {
],
"import/extensions": ["error", "ignorePackages"],
"react/no-unknown-property": 0,
- "react/prop-types": 0,
+ "react/prop-types": 0,
},
};