rimiti/keldoc-js-sdk

View on GitHub
.eslintrc

Summary

Maintainability
Test Coverage
{
  "extends": "airbnb-base",
  "parser": "babel-eslint",
  "env": {
    "jest": true,
    "jasmine": true
  },
  "plugins": [
    "flowtype"
  ],
  "rules": {
    "object-curly-spacing": "off",
    "max-len": [
      2,
      125
    ],
    "prefer-arrow-callback": 0,
    "arrow-parens": [
      2,
      "always"
    ],
    "flowtype/require-valid-file-annotation": [
      2,
      "always"
    ],
    "flowtype/space-after-type-colon": [
      2,
      "always"
    ],
    "flowtype/require-return-type": [
      1,
      "always",
      {
        "excludeArrowFunctions": true
      }
    ]
  }
}