| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/parsmega.nuxt/node_modules/eslint-plugin-vue/lib/rules/ |
Upload File : |
/**
* @fileoverview Alphabetizes static class names.
* @author Maciej Chmurski
*/
'use strict'
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
const { defineTemplateBodyVisitor } = require('../utils')
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
module.exports = {
meta: {
type: 'suggestion',
docs: {
url: 'https://eslint.vuejs.org/rules/static-class-names-order.html',
description: 'enforce static class names order',
categories: undefined
},
fixable: 'code',
schema: []
},
/** @param {RuleContext} context */
create: (context) => {
return defineTemplateBodyVisitor(context, {
/** @param {VAttribute} node */
"VAttribute[directive=false][key.name='class']"(node) {
const value = node.value
if (!value) {
return
}
const classList = value.value
const classListWithWhitespace = classList.split(/(\s+)/)
// Detect and reuse any type of whitespace.
let divider = ''
if (classListWithWhitespace.length > 1) {
divider = classListWithWhitespace[1]
}
const classListNoWhitespace = classListWithWhitespace.filter(
(className) => className.trim() !== ''
)
const classListSorted = classListNoWhitespace.sort().join(divider)
if (classList !== classListSorted) {
context.report({
node,
loc: node.loc,
message: 'Classes should be ordered alphabetically.',
fix: (fixer) => fixer.replaceText(value, `"${classListSorted}"`)
})
}
}
})
}
}