gdbots/common-js

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
  "extends": "airbnb",
  "globals": {
    "document": true,
    "window": true
  },
  "env": {
    "browser": true
  },
  "parserOptions": {
    "ecmaVersion": 8,
    "sourceType": "module",
    "ecmaFeatures": {
      "impliedStrict": true
    }
  },
  "rules": {
    "jsx-a11y/img-has-alt": "off",
    "no-useless-escape": "off",
    "react/jsx-space-before-closing": "off"
  }
}