Created by: lukyth
The part of webpack config that use isExtendingEslintConfig
will be removed on eject, the variable itself hasn't been removed yet. This PR makes the variable to be removed on eject as well.
The code block that use this variable:
// @remove-on-eject-begin
ignore: isExtendingEslintConfig,
baseConfig: isExtendingEslintConfig
? undefined
: {
extends: [require.resolve('eslint-config-react-app')],
},
useEslintrc: isExtendingEslintConfig,
// @remove-on-eject-end