domlint-ui
v0.5.0
Published
DOMLint UI (React)
Readme
domlint-ui
DOMLint UI (React)
Installation
npm i -S domlint-uiUsage
import { DOMLintUI } from 'domlint-ui';
const config = {
rules: {
a: {
style: {
'border-left-width': { expect: ['0px', '1px'] },
},
},
'code, pre': {
style: {
'background-color': {
expect: ['#f3f3f3', '#f8f8f8'],
},
},
},
img: {
exist: {
goodness: 10,
badness: 20,
},
},
h2: {
deprecated: {},
},
},
ignore: ['script'],
};
render(<DOMLintUI config={config} />);