mirror of
https://github.com/type-challenges/type-challenges.git
synced 2025-12-08 19:06:13 +00:00
25 lines
589 B
JavaScript
25 lines
589 B
JavaScript
const antfu = require('@antfu/eslint-config').default
|
|
|
|
module.exports = antfu(
|
|
{
|
|
markdown: false,
|
|
},
|
|
{
|
|
rules: {
|
|
'import/first': 'off',
|
|
'no-alert': 'off',
|
|
'no-unused-expressions': 'off',
|
|
'no-unused-vars': 'off',
|
|
'no-use-before-define': 'off',
|
|
'prefer-const': 'off',
|
|
'ts/ban-ts-comment': 'off',
|
|
'ts/ban-types': 'off',
|
|
'ts/consistent-type-definitions': 'off',
|
|
'ts/no-namespace': 'off',
|
|
'ts/no-require-imports': 'off',
|
|
'ts/no-unused-vars': 'off',
|
|
'unused-imports/no-unused-vars': 'off',
|
|
},
|
|
},
|
|
)
|