mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-01-04 06:34:44 +08:00
14 lines
404 B
JavaScript
14 lines
404 B
JavaScript
/**
|
|
* @type {import('eslint').Linter.Config}
|
|
*/
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['@antfu', './.eslintrc-auto-import.json', '@unocss'],
|
|
|
|
rules: {
|
|
'curly': ['error', 'all'],
|
|
'@typescript-eslint/semi': ['error', 'always'],
|
|
'@typescript-eslint/no-use-before-define': ['error', { allowNamedExports: true, functions: false }],
|
|
'vue/no-empty-component-block': ['error'],
|
|
},
|
|
};
|