simplestatemanager
Version:
SimpleStateManager is a library that allows you to enable and disable JavaScript based on the characteristics of the device.
28 lines • 548 B
JSON
{
"extends": "airbnb-base",
"rules": {
"indent": [
"error",
4
],
"max-len": [
"error", 200
],
"class-methods-use-this": 0,
"import/extensions": [
"error",
"always",
{
"js": "never",
"jsx": "never",
"mjs": "never"
}
]
},
"globals": {
"window": false,
"document": false,
"sessionStorage": false,
"QUnit": false
}
}