12 lines
320 B
JavaScript
12 lines
320 B
JavaScript
const rewireEslint = require("react-app-rewire-eslint");
|
|
function overrideEslintOptions(options) {
|
|
// do stuff with the eslint options...
|
|
return options;
|
|
}
|
|
|
|
/* global module */
|
|
module.exports = function override(config, env) {
|
|
config = rewireEslint(config, env, overrideEslintOptions);
|
|
return config;
|
|
};
|