Socket
Socket
Sign inDemoInstall

eslint-config-standard

Package Overview
Dependencies
Maintainers
3
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-standard

JavaScript Standard Style - ESLint Shareable Config


Version published
Maintainers
3
Created

What is eslint-config-standard?

The eslint-config-standard package is an ESLint Shareable Config that enforces a standard style guide for JavaScript code. It helps maintain code quality and consistency across projects by providing a set of rules and best practices.

What are eslint-config-standard's main functionalities?

Enforce coding style

By extending 'standard' in your ESLint configuration file, you can enforce a consistent coding style across your project.

{ "extends": "standard" }

Catch problematic patterns

The package includes rules that help catch common errors and problematic patterns in your JavaScript code.

/* eslint-env node */

function add(a, b) {
  return a + b;
}

add(1, 2);

Integrate with code editors

You can integrate eslint-config-standard with code editors to get real-time linting feedback as you write code.

// .eslintrc.js
module.exports = {
  extends: 'standard',
  // Additional, per-project rules...
};

Other packages similar to eslint-config-standard

Keywords

FAQs

Package last updated on 20 Mar 2020

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