Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

eslint-config-vuetify

Package Overview
Dependencies
Maintainers
3
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-vuetify

eslint config for vue.js projects

latest
Source
npmnpm
Version
4.2.0
Version published
Weekly downloads
11K
9.36%
Maintainers
3
Weekly downloads
 
Created
Source

eslint-config-vuetify

npm version npm downloads License: MIT

✨ An opinionated eslint config for Vuetify, crafted to keep your code clean and consistent!

💿 Install

# 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

🚀 Usage

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',
  },
})

💪 Supporting Vuetify

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:

📑 License

MIT

Copyright (c) 2016-present Vuetify LLC

This project exists and thrives thanks to all the wonderful people who contribute 😍

Keywords

eslint

FAQs

Package last updated on 16 Sep 2025

Did you know?

Socket

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.

Install

Related posts