table-responsive
Version:
adapts a table to a responsive format that can be viewed on small screens (mobile)
33 lines (32 loc) • 560 B
JSON
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"env": {
"browser": true,
"node": true
},
"rules": {
"semi": 1,
"no-dupe-args": 1,
"no-dupe-keys": 1,
"no-unreachable": 1,
"valid-typeof": 1,
"curly": 1,
"no-useless-call": 1,
"brace-style": [1, "stroustrup"],
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
"spaced-comment": [1, "always", {
"block": {
"exceptions": ["*"]
}
}],
"arrow-spacing": 1,
"comma-spacing": 1,
"keyword-spacing": 1
}
}