
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
eslint-config-vuetify
Advanced tools
✨ An opinionated eslint config for Vuetify, crafted to keep your code clean and consistent!
# npm
npm install -D eslint-config-vuetify
# yarn
yarn add -D eslint-config-vuetify
# pnpm
pnpm install -D eslint-config-vuetify
# bun
bun install -D eslint-config-vuetify
# deno
deno install --dev eslint-config-vuetify
Update your eslint.config.js flat config to extend vuetify:
import vuetify from 'eslint-config-vuetify'
export default vuetify()
Most features are automatically detected, but you can explicitly turn them on/off or customize them
import vuetify from 'eslint-config-vuetify'
export default vuetify({
vue: true,
ts: {
preset: 'all',
},
})
You can provide additional ESLint configurations after the options object, or directly specify them for simpler use cases where the default settings work fine:
import vuetify from 'eslint-config-vuetify'
export default vuetify(
{
pnpm: false,
},
{
plugins: {
sonarjs,
},
rules: {
...sonarjs.configs.recommended.rules,
},
},
)
import vuetify from 'eslint-config-vuetify'
export default vuetify({
rules: {
'no-console': 'error',
},
})
Vuetify is an open source MIT project that has been made possible due to the generous contributions by community backers. If you are interested in supporting this project, please consider:
Copyright (c) 2016-present Vuetify LLC
This project exists and thrives thanks to all the wonderful people who contribute 😍
FAQs
eslint config for vue.js projects
The npm package eslint-config-vuetify receives a total of 4,005 weekly downloads. As such, eslint-config-vuetify popularity was classified as popular.
We found that eslint-config-vuetify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.