Chapter 8, created

This commit is contained in:
Federico Kereki
2018-07-19 23:50:05 -03:00
parent 24266e68a2
commit 3ccce4caa1
19 changed files with 17505 additions and 2 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;
};