jest.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. 'use strict';
  8. // Fix eslint shareable config (https://github.com/eslint/eslint/issues/3458)
  9. require('@rushstack/eslint-patch/modern-module-resolution');
  10. // We use eslint-loader so even warnings are very visible.
  11. // This is why we prefer to use "WARNING" level for potential errors,
  12. // and we try not to use "ERROR" level at all.
  13. module.exports = {
  14. plugins: ['jest', 'testing-library'],
  15. overrides: [
  16. {
  17. files: ['**/__tests__/**/*', '**/*.{spec,test}.*'],
  18. env: {
  19. 'jest/globals': true,
  20. },
  21. // A subset of the recommended rules:
  22. rules: {
  23. // https://github.com/jest-community/eslint-plugin-jest
  24. 'jest/no-conditional-expect': 'error',
  25. 'jest/no-identical-title': 'error',
  26. 'jest/no-interpolation-in-snapshots': 'error',
  27. 'jest/no-jasmine-globals': 'error',
  28. 'jest/no-jest-import': 'error',
  29. 'jest/no-mocks-import': 'error',
  30. 'jest/valid-describe-callback': 'error',
  31. 'jest/valid-expect': 'error',
  32. 'jest/valid-expect-in-promise': 'error',
  33. 'jest/valid-title': 'warn',
  34. // https://github.com/testing-library/eslint-plugin-testing-library
  35. 'testing-library/await-async-query': 'error',
  36. 'testing-library/await-async-utils': 'error',
  37. 'testing-library/no-await-sync-query': 'error',
  38. 'testing-library/no-container': 'error',
  39. 'testing-library/no-debugging-utils': 'error',
  40. 'testing-library/no-dom-import': ['error', 'react'],
  41. 'testing-library/no-node-access': 'error',
  42. 'testing-library/no-promise-in-fire-event': 'error',
  43. 'testing-library/no-render-in-setup': 'error',
  44. 'testing-library/no-unnecessary-act': 'error',
  45. 'testing-library/no-wait-for-empty-callback': 'error',
  46. 'testing-library/no-wait-for-multiple-assertions': 'error',
  47. 'testing-library/no-wait-for-side-effects': 'error',
  48. 'testing-library/no-wait-for-snapshot': 'error',
  49. 'testing-library/prefer-find-by': 'error',
  50. 'testing-library/prefer-presence-queries': 'error',
  51. 'testing-library/prefer-query-by-disappearance': 'error',
  52. 'testing-library/prefer-screen-queries': 'error',
  53. 'testing-library/render-result-naming-convention': 'error',
  54. },
  55. },
  56. ],
  57. };