Skip to content

Instantly share code, notes, and snippets.

@aiyogg
Created January 15, 2018 05:59

Revisions

  1. aiyogg created this gist Jan 15, 2018.
    28 changes: 28 additions & 0 deletions .eslintrc.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    {
    "extends": "standard",
    "plugins": [
    "standard",
    "promise"
    ],
    "env": {
    "node": true,
    "mocha": true,
    "es6": true,
    "browser": true,
    "jquery": true
    },
    "rules": {
    "indent": 0,
    "semi": "off",
    "eqeqeq": "warn",
    "quotes":"warn",
    "camelcase":"off",
    "one-var":"warn",
    "comma-spacing":"warn",
    "new-cap":"warn",
    "space-before-function-paren":"off",
    "spaced-comment":"warn",
    "no-unused-vars":"warn",
    "promise/param-names":"off"
    }
    }