Knape/round.js

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
    "extends": "airbnb",
    "env": {
        "browser": true,
        "node": true,
        "mocha": true
    },
 "parserOptions": {
        "ecmaVersion": 6,
        "sourceType": "module",
        "ecmaFeatures": {
            "forOf": true,
            "jsx": true,
            "es6": true,
            "experimentalObjectRestSpread" : true
        },
    },
    "rules": {
        "comma-dangle": 0,
        "indent": 0,
        "react/forbid-prop-types": 0,
        "react/prop-types": 0,
        "react/jsx-indent-props" : 0,
        "react/jsx-closing-bracket-location" : 0,
        "react/jsx-filename-extension": 0,
        "object-curly-spacing" : 0,
        "arrow-body-style": 0,
        "no-console": 0,
        "max-len": 0,
        "prefer-template": 0,
        "import/no-unresolved": 0,
        "global-require": 0,
        "no-underscore-dangle": 0
    },
    "plugins": [],
     "globals": {
  }
}