fe-build icon indicating copy to clipboard operation
fe-build copied to clipboard

Add option to disable ESLint

Open raohmaru opened this issue 3 years ago • 1 comments

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.

raohmaru avatar Aug 16 '22 12:08 raohmaru

Actually, ESLint can be disabled by removing it from the array general.modules, but it's not very intuitive.

module.exports = {
  general: {
    modules: ['babel']
  }
};```

raohmaru avatar Aug 16 '22 12:08 raohmaru