summaryrefslogtreecommitdiff
path: root/frontend/.eslintrc.js
blob: 11521256ceff0a0e3a8c9e47fdcfefd47a2dc5dd (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
  extends: ['airbnb-typescript-prettier'],
  rules: {
    'react/prop-types': 0,
    'react/destructuring-assignment': 0,
    'react/static-property-placement': 0,
    'jsx-a11y/alt-text': 0,
    'react/jsx-props-no-spreading': 0,
    'jsx-a11y/label-has-associated-control': 0,
  },
};