forked from external-repos/squoosh
* Scaling works on native * It works in wasm * Integrate with UI * Remove benchmark * Integrate Hqx into Resizer module * Link against repo for hqx * Remove unused defaultOpts * Re-add test file * Adding size dropdown * Chrome: go and sit on the naughty step * Better docs * Review * Add link to crbug * Update src/codecs/processor-worker/index.ts Co-Authored-By: Jake Archibald <jaffathecake@gmail.com> * Terminate worker inbetween resize jobs
24 lines
516 B
JSON
24 lines
516 B
JSON
{
|
|
"extends": [
|
|
"tslint-config-airbnb",
|
|
"tslint-react"
|
|
],
|
|
"rules": {
|
|
"jsx-boolean-value": [true, "never"],
|
|
"jsx-no-multiline-js": false,
|
|
"jsx-no-bind": true,
|
|
"jsx-no-lambda": true,
|
|
"function-name": false,
|
|
"variable-name": [true, "check-format", "allow-leading-underscore"],
|
|
"no-duplicate-imports": false,
|
|
"prefer-template": [true, "allow-single-concat"],
|
|
"import-name": false,
|
|
"jsx-key": false
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"build"
|
|
]
|
|
}
|
|
}
|