1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00

add express server

This commit is contained in:
zumbiepig
2024-08-30 09:02:20 -07:00
parent 5a5209cd46
commit 57b89f5bde
5 changed files with 102 additions and 15 deletions

View File

@@ -1,15 +1,18 @@
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.strict, {
rules: {
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-expect-error': false,
'ts-nocheck': false,
'ts-check': true,
},
],
},
});
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strict,
{
rules: {
'@typescript-eslint/ban-ts-comment': [
'error', {
'ts-expect-error': false,
'ts-nocheck': false,
'ts-check': true,
},
],
},
}
);