Enable no-fallthrough lint

This commit is contained in:
valadaptive
2023-12-02 09:07:08 -05:00
parent 4c475afc91
commit 7c3dd75e6a
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,6 @@ module.exports = {
'no-unsafe-finally': 'off', 'no-unsafe-finally': 'off',
'no-dupe-keys': 'off', 'no-dupe-keys': 'off',
'no-irregular-whitespace': 'off', 'no-irregular-whitespace': 'off',
'no-regex-spaces': 'off', 'no-regex-spaces': 'off'
'no-fallthrough': 'off'
} }
}; };

View File

@@ -1908,6 +1908,7 @@ async function checkWorldInfo(chat, maxContext) {
entries: [entry.content] entries: [entry.content]
}); });
} }
break;
default: default:
break; break;
} }