pg-bind
Version: 
Util for binding PostgreSQL queries in NodeJS
28 lines (27 loc) • 724 B
Plain Text
{
    "env": {
        "es6": true,
        "node": true,
        "mocha": true
    },
    "extends": "eslint:recommended",
    "parserOptions": {
        "ecmaVersion": 9
    },
    "rules": {
        "no-tabs": ["error"],
        "no-console": ["off"],
        "no-var": ["error"],
        "curly": ["error", "all"],
        "space-before-function-paren": ["error", {
            "anonymous": "always",
            "named": "never",
            "asyncArrow": "always"
        }],
        "quotes": ["error", "single", {"avoidEscape": true}],
        "linebreak-style": ["error", "unix"],
        "strict": ["error", "global"],
        "semi": ["error", "always"],
        "indent": ["error", 4, {"SwitchCase": 1}]
    }
}