maxkueng/eztvapi

View on GitHub
.eslintrc.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  extends: [
    'airbnb-base',
    'plugin:flowtype/recommended',
  ],
  plugins: [
    'flowtype',
  ],
  rules: {
    'semi-style': 'off',
    'import/prefer-default-export': 'off',
  },
  env: {
    node: true,
  },
};