jackmellis/vuenit

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
    "env": {
        "browser": true,
        "commonjs": true
    },
    "globals" : {
    },
    "extends": "eslint:recommended",
    "plugins" : [],
    "parserOptions": {
        "sourceType": "module",
        "ecmaVersion" : 5
    },
    "rules": {
        "indent": [
            "warn",
            2
        ],
        "linebreak-style": [
            "off",
            "unix"
        ],
        "quotes": [
            "error",
            "single"
        ],
        "semi": [
            "warn",
            "always"
        ]
    }
}