List of HTML attributes.
yarn add @prettier/html-attributesimport { globalAttributes, elementAttributes } from "@prettier/html-attributes";
console.log(globalAttributes);
// => [ 'accesskey', 'autocapitalize', …],
console.log(elementAttributes);
// => {
// 'a': [ 'charset', 'coords' …],
// …,
// }