Socket
Socket
Sign inDemoInstall

eslint-config-quasar

Package Overview
Dependencies
211
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eslint-config-quasar

ESLint config for Quasar monorepo


Version published
Weekly downloads
3
decreased by-66.67%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 14 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc