Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

.eslintrc.js 404B

123456789101112131415161718
  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. // XXX remove this eventually.
  11. 'react/jsx-indent-props': 0
  12. },
  13. 'settings': {
  14. 'react': {
  15. 'version': 'detect'
  16. }
  17. }
  18. };