Renamed chapter 9

This commit is contained in:
Federico Kereki
2018-08-24 19:43:22 -03:00
parent 56bf3b66b7
commit 4f00f6518b
64 changed files with 0 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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;
};