guitar-diff / frontend /eslint.config.js
xribene
first
df4b493
raw
history blame contribute delete
666 Bytes
import antfu from '@antfu/eslint-config'
export default antfu(
{
// customizations
rules: {
'no-unused-vars': 'off',
'unused-imports/no-unused-vars': 'off',
'no-console': 'off',
},
unocss: true,
formatters: {
/**
* Format CSS, LESS, SCSS files, also the `<style>` blocks in Vue
* By default uses Prettier
*/
// css: true,
/**
* Format HTML files
* By default uses Prettier
*/
// html: true,
/**
* Format Markdown files
* Supports Prettier and dprint
* By default uses Prettier
*/
// markdown: 'prettier',
},
},
)