From 60664a5f78cf78c3f18b67befe20218ee0b908c2 Mon Sep 17 00:00:00 2001 From: sparks-alec Date: Mon, 14 Feb 2022 03:22:29 -0500 Subject: [PATCH] additional linting rules Mostly related to how Cue View involves dealing with byte data more frequently than ~~real apps~~ apparently --- .eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index bafee3f..10628fc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,5 +16,9 @@ module.exports = { 'no-alert': 'off', 'no-plusplus': 'off', 'import/extensions': 'off', + 'prefer-destructuring': 'off', + 'no-use-before-define': 'off', + 'space-infix-ops': 'warn', + 'no-bitwise': 'off', }, };