All Projects → standard → Eslint Config Standard

standard / Eslint Config Standard

Licence: mit
ESLint Config for JavaScript Standard Style

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Eslint Config Standard

Eslint Config Standard Jsx
ESLint Shareable Config for JSX support in JavaScript Standard Style
Stars: ✭ 79 (-96.46%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
Standard
🌟 JavaScript Style Guide, with linter & automatic code fixer
Stars: ✭ 26,433 (+1085.87%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
standard-packages
List of packages that use `standard`
Stars: ✭ 32 (-98.56%)
Mutual labels:  development, eslint, static-code-analysis, style-guide, linter, standard
Eslint Config Standard React
ESLint Shareable Config for React/JSX support in JavaScript Standard Style
Stars: ✭ 416 (-81.34%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
Awesome Standard
Documenting the explosion of packages in the standard ecosystem!
Stars: ✭ 300 (-86.54%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
standard-www
👆 Website for JavaScript Standard Style (@standard)
Stars: ✭ 28 (-98.74%)
Mutual labels:  development, static-code-analysis, style-guide, linter, standard
Eslint Plugin Markdown
Lint JavaScript code blocks in Markdown documents
Stars: ✭ 242 (-89.14%)
Mutual labels:  eslint, linter, development, static-code-analysis
healthier
🧘‍♀️ Healthier is an opinionated style agnostic code linter – a friendly companion to Prettier
Stars: ✭ 78 (-96.5%)
Mutual labels:  development, static-code-analysis, linter, standard
codeclimate-eslint
Code Climate Engine for ESLint
Stars: ✭ 86 (-96.14%)
Mutual labels:  eslint, static-code-analysis, linter
Eslint
Find and fix problems in your JavaScript code.
Stars: ✭ 19,665 (+782.23%)
Mutual labels:  eslint, linter, static-code-analysis
Snazzy
Format JavaScript Standard Style as Stylish (i.e. snazzy) output
Stars: ✭ 381 (-82.91%)
Mutual labels:  eslint, standard, development
Ale Sensible
Pretty, responsive and smooth defaults for a sane ALE, gets you started in 30 seconds
Stars: ✭ 30 (-98.65%)
Mutual labels:  eslint, linter, standard
Flake8
The official GitHub mirror of https://gitlab.com/pycqa/flake8
Stars: ✭ 1,112 (-50.11%)
Mutual labels:  linter, style-guide, static-code-analysis
Rubberduck
Every programmer needs a rubberduck. COM add-in for the VBA & VB6 IDE (VBE).
Stars: ✭ 1,287 (-42.26%)
Mutual labels:  linter, static-code-analysis
Violations Lib
Java library for parsing report files from static code analysis.
Stars: ✭ 94 (-95.78%)
Mutual labels:  eslint, static-code-analysis
Unimport
A linter, formatter for finding and removing unused import statements.
Stars: ✭ 96 (-95.69%)
Mutual labels:  linter, static-code-analysis
Static Analysis
⚙️ A curated list of static analysis (SAST) tools for all programming languages, config files, build tools, and more.
Stars: ✭ 9,310 (+317.68%)
Mutual labels:  linter, static-code-analysis
Linter Js Standard
Atom linter plugin for JavaScript, using JavaScript Standard Style
Stars: ✭ 95 (-95.74%)
Mutual labels:  linter, standard
Eslint Plugin I18n Json
Fully extendable eslint plugin for JSON i18n translation files.
Stars: ✭ 101 (-95.47%)
Mutual labels:  eslint, linter
Zoe
🌀 Zero-config ESLint toolchain with sensible defaults.
Stars: ✭ 113 (-94.93%)
Mutual labels:  eslint, linter

eslint-config-standard CI npm downloads javascript style guide

An ESLint Shareable Config for JavaScript Standard Style

JavaScript Style Guide - Standard Style

Install

This module is for advanced users. You probably want to use standard instead :)

npm install eslint-config-standard

Usage

Shareable configs are designed to work with the extends feature of .eslintrc files. You can learn more about Shareable Configs on the official ESLint website.

If you want to set up the config automatically, follow these steps in your project directory:

  1. npx eslint --init
  2. Select "Use a popular style guide."
  3. Select "Standard."
  4. Select a config file format.
  5. If prompted, confirm the installation of the necessary dependencies.

The above steps will automatically set up an ESLint configuration and install the necessary dependencies for you.

If you want to set up the config manually, run the following command:

npm install --save-dev eslint-config-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node

Then, add this to your .eslintrc file:

{
  "extends": "standard"
}

Note: We omitted the eslint-config- prefix since it is automatically assumed by ESLint.

You can override settings from the shareable config by adding them directly into your .eslintrc file.

Looking for something easier than this?

The easiest way to use JavaScript Standard Style to check your code is to use the standard package. This comes with a global Node command line program (standard) that you can run or add to your npm test script to quickly check your style.

Badge

Use this in one of your projects? Include one of these badges in your readme to let people know that your code is using the standard style.

js-standard-style

[![js-standard-style](https://cdn.rawgit.com/standard/standard/master/badge.svg)](http://standardjs.com)

js-standard-style

[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)

Learn more

For the full listing of rules, editor plugins, FAQs, and more, visit the main JavaScript Standard Style repo.

License

MIT. Copyright (c) Feross Aboukhadijeh.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].