diff options
author | Eric Bailey <git@esb.lol> | 2023-08-25 10:48:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 08:48:38 -0700 |
commit | b15a435069a4721214a542af0bd0d24c8ae2066d (patch) | |
tree | eaf95bd63268786b9e53f61763d80537b15f4470 /.eslintrc.js | |
parent | a0dca81a749269839dc78c1952305ba4d0f5568d (diff) | |
download | voidsky-b15a435069a4721214a542af0bd0d24c8ae2066d.tar.zst |
Eslint updates (#1281)
* eslint: Update eslintrc * eslint: Strings must use singlequote quotes * eslint: expected { after if-condition * eslint: update warnings * a little cleanup * remove conflicted file --------- Co-authored-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 9d6e6df80..46b5231b2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,6 +9,7 @@ module.exports = { plugins: ['@typescript-eslint', 'detox'], ignorePatterns: [ '**/__mocks__/*.ts', + 'src/platform/polyfills.ts', 'src/third-party', 'ios', 'android', @@ -25,6 +26,7 @@ module.exports = { files: ['*.js', '*.mjs', '*.ts', '*.tsx'], rules: { semi: [2, 'never'], + 'react-native/no-inline-styles': 0, }, }, ], |