This commit is contained in:
Jordan Eldredge 2019-08-18 14:22:07 -07:00
parent c1162dd74b
commit 56ff4153ba
2 changed files with 1 additions and 2 deletions

View file

@ -6,7 +6,6 @@
"no-nested-ternary": "off",
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off",
"eqeqeq": "off",
"no-else-return": "off",
"import/no-extraneous-dependencies": "off"
}

View file

@ -259,7 +259,7 @@ function parseComand({ start, makiFile, length, pos }) {
argType: opcodeToArgType(opcode),
};
if (command.argType == "NONE") {
if (command.argType === "NONE") {
return command;
}