How to Fix ESLint Error in Nuxt.Js automatically

Birante Sy
1 min readJan 17, 2019

--

Fixing the errors that ESLint displays when saving the file can become very overwhelming 😡 especially by doing it manually.

fortunately there is a way to do it automatically 💪.

just add these lines of code inside the nuxt.config.js file.

// The magics appear here

options: {

fix: true

}

Thanks !

--

--