Permalink
Cannot retrieve contributors at this time
100 lines (100 sloc)
2.59 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| module.exports = { | |
| extends: [ | |
| 'plugin:@woocommerce/eslint-plugin/recommended', | |
| 'plugin:you-dont-need-lodash-underscore/compatible', | |
| ], | |
| globals: { | |
| wcBlocksMiddlewareConfig: 'readonly', | |
| fetchMock: true, | |
| jQuery: 'readonly', | |
| IntersectionObserver: 'readonly', | |
| // @todo Move E2E related ESLint configuration into custom config. | |
| // | |
| // We should have linting properties only included for files that they | |
| // are specific to as opposed to globally. | |
| page: 'readonly', | |
| browser: 'readonly', | |
| context: 'readonly', | |
| jestPuppeteer: 'readonly', | |
| }, | |
| settings: { | |
| jsdoc: { mode: 'typescript' }, | |
| // List of modules that are externals in our webpack config. | |
| // This helps the `import/no-extraneous-dependencies` and | |
| //`import/no-unresolved` rules account for them. | |
| 'import/core-modules': [ | |
| '@woocommerce/block-data', | |
| '@woocommerce/blocks-checkout', | |
| '@woocommerce/price-format', | |
| '@woocommerce/settings', | |
| '@woocommerce/shared-context', | |
| '@woocommerce/shared-hocs', | |
| '@woocommerce/knobs', | |
| '@wordpress/a11y', | |
| '@wordpress/api-fetch', | |
| '@wordpress/block-editor', | |
| '@wordpress/compose', | |
| '@wordpress/data', | |
| '@wordpress/escape-html', | |
| '@wordpress/hooks', | |
| '@wordpress/keycodes', | |
| '@wordpress/url', | |
| 'babel-jest', | |
| 'dotenv', | |
| 'jest-environment-puppeteer', | |
| 'lodash/kebabCase', | |
| 'lodash', | |
| 'prop-types', | |
| 'react', | |
| 'requireindex', | |
| ], | |
| 'import/resolver': { | |
| node: {}, | |
| webpack: {}, | |
| typescript: {}, | |
| }, | |
| }, | |
| rules: { | |
| 'woocommerce/feature-flag': 'off', | |
| 'react-hooks/exhaustive-deps': 'error', | |
| 'react/jsx-fragments': [ 'error', 'syntax' ], | |
| '@wordpress/no-global-active-element': 'warn', | |
| }, | |
| overrides: [ | |
| { | |
| files: [ '**/bin/**.js', '**/storybook/**.js', '**/stories/**.js' ], | |
| rules: { | |
| 'you-dont-need-lodash-underscore/omit': 'off', | |
| }, | |
| }, | |
| { | |
| files: [ '*.ts', '*.tsx' ], | |
| parser: '@typescript-eslint/parser', | |
| extends: [ | |
| 'plugin:@woocommerce/eslint-plugin/recommended', | |
| 'plugin:you-dont-need-lodash-underscore/compatible', | |
| 'plugin:@typescript-eslint/recommended', | |
| ], | |
| rules: { | |
| '@typescript-eslint/no-explicit-any': 'error', | |
| 'no-use-before-define': 'off', | |
| '@typescript-eslint/no-use-before-define': [ 'error' ], | |
| 'jsdoc/require-param': 'off', | |
| 'no-shadow': 'off', | |
| '@typescript-eslint/no-shadow': [ 'error' ], | |
| '@typescript-eslint/no-unused-vars': [ | |
| 'error', | |
| { ignoreRestSiblings: true }, | |
| ], | |
| }, | |
| }, | |
| { | |
| files: [ './assets/js/mapped-types.ts' ], | |
| rules: { | |
| '@typescript-eslint/no-explicit-any': 'off', | |
| '@typescript-eslint/no-shadow': 'off', | |
| 'no-shadow': 'off', | |
| }, | |
| }, | |
| ], | |
| }; |