Config of ESLint for Nuxt by Coralo Team.
It's like Prettier and AirBnB had a baby.
Follow the instructions over there. This is optional, though.
Install eslint-config-coralo-nuxt
npm install --save-dev eslint-config-coralo-nuxt
Then, add coralo-nuxt
to the "extends" array in your .eslintrc.* file. Make sure to put it last, so it gets the chance to override other configs.
{
"extends": [
"coralo-nuxt"
]
}