about summary refs log tree commit diff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-06-08 15:52:12 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-06-08 15:52:12 -0500
commit92ca49ab9a309510a5503a4df6a0ebcfba30f918 (patch)
tree55d6741b92bf613ba8e197084965a00fc09dfe28 /.eslintrc.js
parentefe65e70d7f8a4f30e4c780c5fdb56f3c81f377e (diff)
downloadvoidsky-92ca49ab9a309510a5503a4df6a0ebcfba30f918.tar.zst
Add web target
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index dcf0be086..4acd8ff80 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -2,12 +2,12 @@ module.exports = {
   root: true,
   extends: '@react-native-community',
   parser: '@typescript-eslint/parser',
-  plugins: ['@typescript-eslint'],
+  // plugins: ['@typescript-eslint'],
   overrides: [
     {
       files: ['*.ts', '*.tsx'],
       rules: {
-        '@typescript-eslint/no-shadow': ['error'],
+        '@typescript-eslint/no-shadow': 'off',
         'no-shadow': 'off',
         'no-undef': 'off',
       },