All Projects → standard → Eslint Config Standard React

standard / Eslint Config Standard React

Licence: mit
ESLint Shareable Config for React/JSX support in JavaScript Standard Style

Programming Languages

javascript
184084 projects - #8 most used programming language
es6
455 projects
ecmascript
72 projects

Projects that are alternatives of or similar to Eslint Config Standard React

Awesome Standard
Documenting the explosion of packages in the standard ecosystem!
Stars: ✭ 300 (-27.88%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
standard-packages
List of packages that use `standard`
Stars: ✭ 32 (-92.31%)
Mutual labels:  development, eslint, static-code-analysis, style-guide, linter, standard
Eslint Config Standard
ESLint Config for JavaScript Standard Style
Stars: ✭ 2,229 (+435.82%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
Eslint Config Standard Jsx
ESLint Shareable Config for JSX support in JavaScript Standard Style
Stars: ✭ 79 (-81.01%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
Standard
🌟 JavaScript Style Guide, with linter & automatic code fixer
Stars: ✭ 26,433 (+6254.09%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
standard-www
👆 Website for JavaScript Standard Style (@standard)
Stars: ✭ 28 (-93.27%)
Mutual labels:  development, static-code-analysis, style-guide, linter, standard
healthier
🧘‍♀️ Healthier is an opinionated style agnostic code linter – a friendly companion to Prettier
Stars: ✭ 78 (-81.25%)
Mutual labels:  development, static-code-analysis, linter, standard
Eslint Plugin Markdown
Lint JavaScript code blocks in Markdown documents
Stars: ✭ 242 (-41.83%)
Mutual labels:  eslint, linter, development, static-code-analysis
Flake8
The official GitHub mirror of https://gitlab.com/pycqa/flake8
Stars: ✭ 1,112 (+167.31%)
Mutual labels:  linter, style-guide, static-code-analysis
Ale Sensible
Pretty, responsive and smooth defaults for a sane ALE, gets you started in 30 seconds
Stars: ✭ 30 (-92.79%)
Mutual labels:  eslint, linter, standard
codeclimate-eslint
Code Climate Engine for ESLint
Stars: ✭ 86 (-79.33%)
Mutual labels:  eslint, static-code-analysis, linter
Snazzy
Format JavaScript Standard Style as Stylish (i.e. snazzy) output
Stars: ✭ 381 (-8.41%)
Mutual labels:  eslint, standard, development
Eslint
Find and fix problems in your JavaScript code.
Stars: ✭ 19,665 (+4627.16%)
Mutual labels:  eslint, linter, static-code-analysis
awesome-react-app
Always the latest version of "create-react-app" with awesome configurations (lint, commit lint, husk, editor config, etc)
Stars: ✭ 44 (-89.42%)
Mutual labels:  eslint, linter
unimport
A linter, formatter for finding and removing unused import statements.
Stars: ✭ 119 (-71.39%)
Mutual labels:  static-code-analysis, linter
Lint Review
An automated code linting bot that integrates various code lint tools with github pull requests.
Stars: ✭ 279 (-32.93%)
Mutual labels:  eslint, linter
gandalf-lint
Bad Code Shall Not Pass
Stars: ✭ 29 (-93.03%)
Mutual labels:  eslint, linter
Bandit
Bandit is a tool designed to find common security issues in Python code.
Stars: ✭ 3,763 (+804.57%)
Mutual labels:  linter, static-code-analysis
Lynt
✨ A zero config JavaScript linter with support for Typescript, Flow, and React.
Stars: ✭ 390 (-6.25%)
Mutual labels:  eslint, linter
Pytype
A static type analyzer for Python code
Stars: ✭ 3,545 (+752.16%)
Mutual labels:  linter, static-code-analysis

eslint-config-standard-react travis npm downloads javascript style guide

An ESLint Shareable Config for React/JSX support in JavaScript Standard Style

js-standard-style

Install

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

npm install eslint-config-standard-react

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.

This Shareable Config adds React and JSX to the baseline JavaScript Standard Style rules provided in eslint-config-standard.

Here's how to install everything you need:

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

Then, add this to your .eslintrc file:

{
  "parser": "babel-eslint",
  "extends": ["standard", "standard-jsx", "standard-react"]
}

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)](https://github.com/standard/standard)

js-standard-style

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

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].