Skip to content

Instantly share code, notes, and snippets.

@qubyte
Created March 26, 2020 10:10

Revisions

  1. qubyte created this gist Mar 26, 2020.
    14 changes: 14 additions & 0 deletions .eslintrc.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    {
    "env": {
    "mocha": true
    },
    "rules": {
    "max-nested-callbacks": ["error", 7],
    "no-restricted-properties": [
    "error",
    { "object": "describe", "property": "only" },
    { "object": "context", "property": "only" },
    { "object": "it", "property": "only" }
    ]
    }
    }