Socket
Book a DemoInstallSign in
Socket

eslint-config-tidy-react

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-tidy-react

ESLint shareable config for React with Tidy style

latest
Source
npmnpm
Version
0.8.0
Version published
Maintainers
1
Created
Source

eslint-config-tidy-react Build status for ESLint Config Tidy React

ESLint shareable config for React with Tidy style

Note that this only enables rules related to React. You probably want to compose this with other configs, such as eslint-config-tidy (as shown below), to make your perfect setup.

Why?

  • Consistency.
  • Clarity.
  • Simplicity.

Install

npm install eslint-config-tidy eslint-config-tidy-react eslint-plugin-react --save-dev

Usage

All you have to do is tell your linter to use this config.

Add an xo.config.js file to your project:

import tidy from 'eslint-config-tidy';
import tidyReact from 'eslint-config-tidy-react';

export default [
    ...tidy,
    ...tidyReact
];

Alternatively, use with ESLint

Add an eslint.config.js file to your project:

import tidy from 'eslint-config-tidy';
import tidyReact from 'eslint-config-tidy-react';

export default [
    ...tidy,
    ...tidyReact
];

Contributing

See our contributing guidelines for more details.

  • Fork it.
  • Make a feature branch: git checkout -b my-new-feature
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request.

License

MPL-2.0 © Seth Holladay

Go make something, dang it.

Keywords

❤️

FAQs

Package last updated on 12 Aug 2025

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