Socket
Socket
Sign inDemoInstall

@vue/eslint-config-standard

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/eslint-config-standard

eslint-config-standard for vue-cli


Version published
Weekly downloads
88K
decreased by-21.33%
Maintainers
1
Weekly downloads
 
Created

What is @vue/eslint-config-standard?

@vue/eslint-config-standard is an ESLint configuration package specifically designed for Vue.js projects. It extends the standard ESLint rules with additional rules and settings tailored for Vue.js development, ensuring code quality and consistency.

What are @vue/eslint-config-standard's main functionalities?

Standard JavaScript Rules

This feature extends the standard ESLint rules along with essential Vue.js rules. It ensures that your JavaScript code adheres to widely accepted best practices and coding standards.

{"extends":["eslint:recommended","plugin:vue/essential","@vue/standard"]}

Vue.js Specific Rules

This feature includes rules specific to Vue.js, such as preventing unused variables in Vue components and ensuring that templates have a single root element.

{"extends":["plugin:vue/essential"],"rules":{"vue/no-unused-vars":"error","vue/no-multiple-template-root":"error"}}

Code Formatting

This feature enforces consistent code formatting rules, such as no semicolons and 2-space indentation, to maintain a uniform code style across the project.

{"extends":["@vue/standard"],"rules":{"semi":["error","never"],"indent":["error",2]}}

Other packages similar to @vue/eslint-config-standard

Keywords

FAQs

Package last updated on 28 Feb 2018

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc