basic2/.eslintrc

11 lines
233 B
Plaintext
Raw Normal View History

2022-09-26 00:21:50 +08:00
{
2022-10-02 03:29:37 +08:00
"extends": "@antfu",
"rules": {
2023-03-28 01:15:22 +08:00
"eslint-comments/no-unlimited-disable": "off",
2023-02-25 12:05:58 +08:00
"curly": ["error", "all"],
"vue/component-tags-order": ["error", {
"order": ["route", "script", "template", "style"]
}]
2022-10-02 03:29:37 +08:00
}
2022-09-26 00:21:50 +08:00
}