๐ฎโโ๏ธ Enforce code style
Add eslint
and this config to your project:
$ yarn add eslint "significantbit/eslint-config-sigbit#<release>" -D
Use default config:
// .eslintrc.js
module.exports = {
root: true,
extends: [
'sigbit'
]
}
Use specific config:
// .eslintrc.js
module.exports = {
root: true,
extends: [
'sigbit/nuxt'
]
}