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

eslint-config-quasar

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-quasar

ESLint config for Quasar monorepo

latest
npmnpm
Version
0.0.3
Version published
Maintainers
2
Created
Source

eslint-config-quasar

ESLint configuration for Quasar monorepo. It's a private package only meant to be used in core source code.

Usage

Add the dependency to package.json:

{
  "devDependencies": {
    "eslint-config-quasar": "workspace:*",
  }
}

We need @rushstack/eslint-patch to be able to resolve packages provided by this package. Add the following to .eslintrc.cjs:

require('@rushstack/eslint-patch/modern-module-resolution'); // 👈 Add this line

module.exports = {
  // ...
}

Then extend the configuration in .eslintrc.cjs:

// ...

module.exports = {
  extends: [
    'quasar/base',
    'quasar/vue',
    'quasar/node',
  ],

  // ...
}

FAQs

Package last updated on 19 Jul 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