You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc.js 542B

1234567891011121314151617181920212223
  1. module.exports = {
  2. 'extends': [
  3. '../.eslintrc.js',
  4. '@jitsi/eslint-config/flow',
  5. '@jitsi/eslint-config/jsdoc',
  6. '@jitsi/eslint-config/react',
  7. '.eslintrc-react-native.js'
  8. ],
  9. 'rules': {
  10. 'flowtype/no-types-missing-file-annotation': 0,
  11. // XXX remove this eventually.
  12. 'react/jsx-indent-props': 0
  13. },
  14. 'settings': {
  15. 'flowtype': {
  16. 'onlyFilesWithFlowAnnotation': true
  17. },
  18. 'react': {
  19. 'version': 'detect'
  20. }
  21. }
  22. };