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 /src/view/com/modals/Modal.web.tsx | |
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 'src/view/com/modals/Modal.web.tsx')
-rw-r--r-- | src/view/com/modals/Modal.web.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 0e28b1618..687c4fba3 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -118,10 +118,10 @@ function Modal({modal}: {modal: ModalIface}) { } return ( - // eslint-disable-next-line + // eslint-disable-next-line react-native-a11y/has-valid-accessibility-descriptors <TouchableWithoutFeedback onPress={onPressMask}> <View style={styles.mask}> - {/* eslint-disable-next-line */} + {/* eslint-disable-next-line react-native-a11y/has-valid-accessibility-descriptors */} <TouchableWithoutFeedback onPress={onInnerPress}> <View style={[ |