New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-quasar

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

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
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 14 Mar 2024

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc