@grrr/accessible-tabs
Version:
Accessible tabs enhancer, providing tablist, tab and tabpanel roles and spec-compliant tab switching behaviour.
37 lines (36 loc) • 907 B
Plain Text
{
"extends": "airbnb-base",
"env": {
"browser": true,
"es6": true,
},
"plugins": [
"import",
],
"rules": {
"arrow-body-style": "off",
"arrow-parens": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "only-multiline",
}],
"implicit-arrow-linebreak": "off",
"import/order": "off",
"import/prefer-default-export": "off",
"no-confusing-arrow": "off",
"no-console": ["error", {
"allow": ["warn", "error"],
}],
"no-nested-ternary": "off",
"no-param-reassign": "off",
"no-script-url": "off",
"no-unused-vars": ["error", { "args": "none" }],
"object-curly-newline": "off",
"padded-blocks": "off",
"quote-props": ["error", "consistent"],
"quotes": "off",
},
}