base.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. // This file contains the minimum ESLint configuration required for Create
  11. // React App support, and is used as the `baseConfig` for `eslint-loader`
  12. // to ensure that user-provided configs don't need this boilerplate.
  13. module.exports = {
  14. root: true,
  15. parser: '@babel/eslint-parser',
  16. plugins: ['react'],
  17. env: {
  18. browser: true,
  19. commonjs: true,
  20. es6: true,
  21. jest: true,
  22. node: true,
  23. },
  24. parserOptions: {
  25. sourceType: 'module',
  26. requireConfigFile: false,
  27. babelOptions: {
  28. presets: [require.resolve('babel-preset-react-app/prod')],
  29. },
  30. },
  31. settings: {
  32. react: {
  33. version: 'detect',
  34. },
  35. },
  36. rules: {
  37. 'react/jsx-uses-vars': 'warn',
  38. 'react/jsx-uses-react': 'warn',
  39. },
  40. };