You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
1 year ago
|
import antfu from '@antfu/eslint-config'
|
||
|
|
||
|
export default antfu(
|
||
|
{
|
||
7 months ago
|
unocss: true,
|
||
|
formatters: true,
|
||
1 year ago
|
languageOptions: {},
|
||
|
rules: {
|
||
|
'curly': 'off',
|
||
|
'ts/prefer-literal-enum-member': ['off', {
|
||
|
allowBitwiseExpressions: true,
|
||
|
}],
|
||
|
'no-console': 'off',
|
||
|
},
|
||
|
},
|
||
|
)
|