divyanshyadav/data-structures-again

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
    "env": {
        "browser": true,
        "commonjs": true,
        "es6": true,
        "node": true,
        "jest": true
    },
    "extends": "standard",
    "globals": {
        "Atomics": "readonly",
        "SharedArrayBuffer": "readonly"
    },
    "parserOptions": {
        "ecmaVersion": 2015
    },
    "rules": {
        "indent": ["error", 4],
        "space-before-function-paren": 0
    }
}