@synergy-design-system/components
Version:
This package provides the base of the Synergy Design System as native web components. It uses [lit](https://www.lit.dev) and parts of [shoelace](https://shoelace.style/). Synergy officially supports the latest two versions of all major browsers (as define
17 lines (15 loc) • 355 B
JavaScript
import { defineConfig } from "html-validate";
import { createElements } from "./scripts/createElements.js";
export default defineConfig({
extends: ["html-validate:recommended"],
elements: [
"html5",
createElements(),
],
root: true,
rules: {
'wcag/h32': 'off',
'no-deprecated-attr': 'warn',
'no-inline-style': 'off'
},
});