It is possible share my .eslintrc config to be used in other projects?
Below, my webpack.config.js
mode: 'production',
module: {
rules: [
{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
babelrc: false,
cacheDirectory: true,
plugins: ['transform-react-remove-prop-types'],
presets: [
'@babel/preset-react',
[
'@babel/preset-env',
{
targets: {
esmodules: false
}
}
]
]
}
}
}
]
},
I'm sharing some Components with other projects, and I likely that this projects would uses my .eslintrc
config file.