Enforce import order

This commit is contained in:
Matt Isenhower 2024-03-17 10:14:09 -07:00
parent c6091d822e
commit 9190a37e6d

View File

@ -21,6 +21,9 @@ module.exports = {
"vue/max-attributes-per-line": ["warn", { singleline: { max: 4 } }],
"vue/html-self-closing": ["warn", { html: { void: "always" } }],
// Imports
"import/order": "warn",
// JSDoc
"jsdoc/require-jsdoc": "off",
"jsdoc/require-returns": "off",