@pactsafe/pactsafe-react-sdk
Version:
PactSafe React SDK - React SDK for easy Clickwrap/Browsewrap implementation leveraging PactSafe's JavaScript API
22 lines • 720 B
Plain Text
{
"extends": [
"airbnb"
],
"rules": {
"import/no-extraneous-dependencies": "off", //don't want to load react-dom in on other's npm install, so keeping as devDependency
"no-console": "off", // for the demo page we want to keep console.logs to show triggered events
"no-alert": "off", // same for alerts
"react/jsx-filename-extension": "off",
"jsx-a11y/label-has-associated-control": [
2,
{
"assert": "either",
"controlComponents": [
"Form.Field"
],
"depth": 3
}
],
"jsx-a11y/label-has-for": "off",
},
}