1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00
This commit is contained in:
zumbiepig
2024-08-18 21:19:07 -07:00
parent acb6902814
commit 365d5014d1
11 changed files with 31 additions and 32 deletions

View File

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