fe-build
fe-build copied to clipboard
Add option to disable ESLint
ESLint should have an option to disable it. There are situations where linters could be disabled, like a release to prod and last minute changes with linter violations and no available frontenders around.
Expected Behaviour
Add a command line argument to disable ESLint.
Actually, ESLint can be disabled by removing it from the array general.modules, but it's not very intuitive.
module.exports = {
general: {
modules: ['babel']
}
};```