15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
|
|
/*import antfu from '@antfu/eslint-config'
|
||
|
|
|
||
|
|
export default antfu(
|
||
|
|
{
|
||
|
|
stylistic: {
|
||
|
|
indent: 'tab', // Use tabs for indentation
|
||
|
|
quotes: 'single' // Use single quotes
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
'style/comma-dangle': ['error', 'never'], // Disallow trailing commas
|
||
|
|
'antfu/top-level-function': 'off' // Disallow top-level function declarations
|
||
|
|
}
|
||
|
|
}
|
||
|
|
)
|
||
|
|
*/
|