image-filter-threshold
Version:
Small library to apply a threshold transformation to a image
25 lines (22 loc) • 509 B
Plain Text
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true
},
"rules": {
"indent": ["error", 4],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-cond-assign": ["error", "always"],
"no-console": "off",
},
"globals": {
"describe": true,
"context": true,
"it": true,
"beforeEach": true,
"afterEach": true
}
}