Files
AudioPlayr/tslint.json
Josh Goldberg 920b27e288 Wrapping refactor (#16)
* Started refactor to not dirctly touch DOM elements

* Switched storage to only using strings

It's a little extra work, but makes it compatible with `localStorage`.

* Separated local and global muted and volume

* Documented all the things

* Added nameTransform, hasSound concepts

* Added no-unsafe-any lint rule

Sinon doesn't play nicely with it.
2018-01-02 17:02:15 -05:00

13 lines
267 B
JSON

{
"extends": "./node_modules/shenanigans-manager/setup/tslint.json",
"linterOptions": {
"exclude": [
"./node_modules/**/*"
]
},
"rules": {
"no-unsafe-any": false,
"strict-boolean-expressions": false
}
}