client/.eslintrc.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  env: {
    node: false,
    browser: true
  },
  rules: {
    'import/no-unresolved': ['off'],
    'import/extensions': ['off'],
    'no-console': ['off'],
    'func-names': ['off'],
    'import/prefer-default-export': ['off'],
    'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }]
  }
};