All Projects → standard → Eslint Config Standard Jsx

standard / Eslint Config Standard Jsx

Licence: mit
ESLint Shareable Config for 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 Jsx

Eslint Config Standard
ESLint Config for JavaScript Standard Style
Stars: ✭ 2,229 (+2721.52%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
Standard
🌟 JavaScript Style Guide, with linter & automatic code fixer
Stars: ✭ 26,433 (+33359.49%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
standard-packages
List of packages that use `standard`
Stars: ✭ 32 (-59.49%)
Mutual labels:  development, eslint, static-code-analysis, style-guide, linter, standard
Awesome Standard
Documenting the explosion of packages in the standard ecosystem!
Stars: ✭ 300 (+279.75%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
Eslint Config Standard React
ESLint Shareable Config for React/JSX support in JavaScript Standard Style
Stars: ✭ 416 (+426.58%)
Mutual labels:  eslint, linter, standard, development, style-guide, static-code-analysis
standard-www
👆 Website for JavaScript Standard Style (@standard)
Stars: ✭ 28 (-64.56%)
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 (-1.27%)
Mutual labels:  development, static-code-analysis, linter, standard
Eslint Plugin Markdown
Lint JavaScript code blocks in Markdown documents
Stars: ✭ 242 (+206.33%)
Mutual labels:  eslint, linter, development, static-code-analysis
codeclimate-eslint
Code Climate Engine for ESLint
Stars: ✭ 86 (+8.86%)
Mutual labels:  eslint, static-code-analysis, linter
Eslint
Find and fix problems in your JavaScript code.
Stars: ✭ 19,665 (+24792.41%)
Mutual labels:  eslint, linter, static-code-analysis
Flake8
The official GitHub mirror of https://gitlab.com/pycqa/flake8
Stars: ✭ 1,112 (+1307.59%)
Mutual labels:  linter, style-guide, static-code-analysis
Snazzy
Format JavaScript Standard Style as Stylish (i.e. snazzy) output
Stars: ✭ 381 (+382.28%)
Mutual labels:  eslint, standard, development
Ale Sensible
Pretty, responsive and smooth defaults for a sane ALE, gets you started in 30 seconds
Stars: ✭ 30 (-62.03%)
Mutual labels:  eslint, linter, standard
Javascript Airbnb
Перевод «JavaScript Style Guide» от Airbnb
Stars: ✭ 579 (+632.91%)
Mutual labels:  eslint, style-guide
Esprint
Fast eslint runner
Stars: ✭ 556 (+603.8%)
Mutual labels:  eslint, linter
Xo
❤️ JavaScript/TypeScript linter (ESLint wrapper) with great defaults
Stars: ✭ 6,277 (+7845.57%)
Mutual labels:  eslint, linter
Pep8speaks
A GitHub app to automatically review Python code style over Pull Requests
Stars: ✭ 546 (+591.14%)
Mutual labels:  linter, static-code-analysis
Eslint Plugin Node
Additional ESLint's rules for Node.js
Stars: ✭ 740 (+836.71%)
Mutual labels:  eslint, static-code-analysis
Eslint Plugin
ESLint configurations and additional rules for me
Stars: ✭ 19 (-75.95%)
Mutual labels:  eslint, static-code-analysis
Eslint Plugin React
React specific linting rules for ESLint
Stars: ✭ 7,472 (+9358.23%)
Mutual labels:  eslint, development

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

An ESLint Shareable Config for 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-jsx

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 extra JSX style rules to the baseline JavaScript Standard Style rules provided in eslint-config-standard. It doesn't assume that you're using React, so other virtual DOM libraries like virtual-dom and deku are supported.

Even though this config is JSX only (no React), it makes use of eslint-plugin-react for its generic JSX rules.

(If you want React-specific rules too, consider using eslint-config-standard-react instead.)

Here's how to install everything you need:

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

Then, add this to your .eslintrc file:

{
  "extends": ["standard", "standard-jsx"]
}

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