Created chapter 07

This commit is contained in:
Federico Kereki
2018-07-01 15:18:13 -03:00
parent bfaad12a63
commit 54a1633bdc
18 changed files with 14523 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;
};