diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-08 15:52:12 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-08 15:52:12 -0500 |
commit | 92ca49ab9a309510a5503a4df6a0ebcfba30f918 (patch) | |
tree | 55d6741b92bf613ba8e197084965a00fc09dfe28 /.eslintrc.js | |
parent | efe65e70d7f8a4f30e4c780c5fdb56f3c81f377e (diff) | |
download | voidsky-92ca49ab9a309510a5503a4df6a0ebcfba30f918.tar.zst |
Add web target
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 4 |
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', }, |