stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
35 lines (27 loc) • 617 B
JavaScript
import { mathmlTagNames } from 'mathml-tag-names';
import svgTags from 'svg-tags';
/**
* Check whether a type selector is a custom element
*
* @param {string} selector
* @returns {boolean}
*/
export default function isCustomElement(selector) {
if (!/^[a-z]/.test(selector)) {
return false;
}
if (!selector.includes('-')) {
return false;
}
const selectorLowerCase = selector.toLowerCase();
if (selectorLowerCase !== selector) {
return false;
}
if (svgTags.includes(selectorLowerCase)) {
return false;
}
if (mathmlTagNames.includes(selectorLowerCase)) {
return false;
}
return true;
}