Releases: nuxt/eslint
Releases · nuxt/eslint
v0.3.0-beta.4
🚀 Features
🐞 Bug Fixes
- eslint-config: Enable
vue/multi-word-component-namesfor files directly undercomponents- by @kingyue737 and @antfu in #360 (37ab5) - eslint-plugin: Add browse + node globals - by @davidurco and @antfu in #361 (d8799)
View changes on GitHub
v0.3.0-beta.3
🐞 Bug Fixes
- eslint-config:
- Disable more vue stylistic rules by default - by @kingyue737 in #349 (14367)
- module:
- Correctly resolve
withNuxttype - by @DamianGlowala in #350 (d706c) - Account for
layer.config.componentsbeingundefined- by @DamianGlowala in #352 (6b2eb)
- Correctly resolve
View changes on GitHub
v0.3.0-beta.2
v0.3.0-beta.1
v0.3.0-alpha.1
🚀 Features
- Flat config, eslint plugin, and nuxt module - by @antfu, ricardogobbosouza and ModyQyW in #332 (ec142)
- module: Generate configuration for
globals- by @antfu in #336 (ee98b)
🐞 Bug Fixes
- Apply recommended typescript rules to vue files as well - by @danielroe (bcef4)
- Exclude subfolders of components folder from name rule - by @jd1378 in #278 (13fcd)
- eslint-config:
- Add extra file extensions to globs - by @danielroe (9628a)
- Handle
app.vueanderror.vuein customsrcDir- by @danielroe, @antfu and autofix-ci[bot] in #335 (adda0)
- eslint-config-legacy:
View changes on GitHub
@nuxt/eslint-config v0.1.0
As part of #240, we're releasing a new package: @nuxt/eslint-config, which contains a non-opinionated Nuxt 3 eslint preset.
We plan to iterate quite quickly on this one, adding new features and rules targeted at Nuxt specifically, but this initial release is available for testing.
v12.0.0
v11.0.0
v10.0.0
Dependency Upgrades
- Updated
eslint-config-standardfrom^16.0.3to^17.0.0 - Updated
eslint-plugin-unicorn"from^41.0.0to^42.0.0 - Updated
eslintfrom^8.11.0to^8.14.0
Breaking Changes
We have removed dependency on eslint-plugin-jest. If you need it back:
- Install
eslint-plugin-jestas a devDependency - Update
.eslintrc:
{
"extends": [
"@nuxtjs"
],
"env": {
"jest/globals": true
},
"plugins": [
"jest"
]
}Bug Fixes
- Add dependency
eslint-plugin-n(022aa5f) - Disable
vue/multi-word-component-namesforapp.vueanderror.vue(resolves #201) (bbb0e27) - Disable multiword-rule (#190) (821057e)
- Remove dependency on
eslint-plugin-standard(#185) (ee47f83)