sexybiggetje/pixdisp

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
    "env": {
        "es6": true,
        "node": true
    },
    "plugins": [
        "security"
    ],
    "extends": [
        "eslint:recommended",
        "plugin:security/recommended"
    ],
    "parserOptions": {
        "sourceType": "module"
    },
    "rules": {
        "indent": [
            "error",
            "tab"
        ],
        "linebreak-style": [
            "error",
            "unix"
        ],
        "quotes": [
            "error",
            "single"
        ],
        "semi": [
            "error",
            "always"
        ],
        "no-case-declarations": "off",
        "no-console": "off",
        "security/detect-new-buffer": "off",
        "security/detect-object-injection": "off"
    }
}