mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 09:24:48 +00:00
15 lines
326 B
JavaScript
15 lines
326 B
JavaScript
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
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,
|
|
},
|
|
],
|
|
},
|
|
});
|