image-filter-core
Version:
Core module for image-filter
32 lines (29 loc) • 683 B
Plain Text
{
"extends": "eslint:recommended",
"env": {
"es6": 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,
"before": true,
"beforeEach": true,
"afterEach": true,
"window": true,
"document": true,
"Worker": true,
"Blob": true,
"importScripts": true,
"transform": true
}
}