qlobber-pg
Version:
PostgreSQL-based pub-sub and workqueues. Supports AMQP-like wildcard topics.
41 lines (40 loc) • 736 B
JSON
{
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"brace-style": [
"error",
"1tbs"
],
"no-unused-vars": [
"error", {
"varsIgnorePattern": "^unused_",
"argsIgnorePattern": "^unused_"
}
],
"strict": [
"error",
"global"
]
}
}