šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Book a DemoInstallSign in
Socket

eslint-config-vuetify

Package Overview
Dependencies
Maintainers
3
Versions
27
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

4.0.0
latest
Source
npm
Version published
Weekly downloads
9.6K
-27.14%
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 01 May 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