npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dworac/eslint-config-typescript-react

v1.1.1

Published

dworac's eslint typescript configuration with airbnb, prettier and jsdoc

Downloads

155

Readme

@dworac/eslint-config-typescript-react

ESLint is a popular tool that helps maintain consistent code quality across a project. The template you provided comes with a pre-configured ESLint setup that has support for TypeScript, the AirBnB preset, Prettier, React and JSDoc. Let's take a closer look at each of these components and the configuration for the template.

Usage

To use the ESLint configuration, you must first install the required dependencies:

yarn add -D @dworac/eslint-config-typescript-react typescript

Then, add the following to your .eslintrc.js file:

{
  extends: [
    '@dworac/eslint-config-typescript-react',
  ],
}

TypeScript Support

The @typescript-eslint package provides linting rules specifically tailored for TypeScript. This is important because regular ESLint does not understand TypeScript syntax. The @typescript-eslint/parser package allows ESLint to parse TypeScript code, and the @typescript-eslint/eslint-plugin package provides TypeScript-specific linting rules.

parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],

AirBnB Preset

The AirBnB preset provides a comprehensive set of ESLint rules based on the AirBnB JavaScript style guide. These rules are designed to improve the readability, maintainability, and overall quality of your code. The airbnb-base preset provides the core AirBnB rules, while airbnb-typescript/base extends these rules with additional TypeScript-specific rules.

extends: [
    'eslint:recommended',
    'plugin:@typescript-eslint/recommended',
    'airbnb-base',
    'airbnb-typescript/base',
],

Prettier

Prettier is a code formatter that can automatically format your code to adhere to a consistent style. The eslint-config-prettier package disables any ESLint rules that conflict with Prettier, and the eslint-plugin-prettier package integrates Prettier into ESLint so that you can run Prettier automatically using an ESLint command.

extends: [
    // ...
    'plugin:prettier/recommended',
],
rules: {
    'prettier/prettier': ['error', { endOfLine: 'auto' }],
},

JSDoc

JSDoc is a tool for documenting JavaScript code. The eslint-plugin-jsdoc package provides linting rules that enforce JSDoc comments in your code. This can help improve code readability and maintainability by making it easier for other developers to understand what your code does.

extends: [
    // ...
    'plugin:jsdoc/recommended',
],
plugins: ['jsdoc'],
rules: {
    'jsdoc/require-file-overview': 1,
},
settings: {
    jsdoc: {
        structuredTags: {
            swagger: {
                name: 'swagger',
            },
            openapi: {
                name: 'swagger',
            },
        },
    },
},

React

This eslint configuration comes with react support. These are the lines that add React support:

extends: [
    // ...
    "plugin:react/recommended",
    'plugin:react-hooks/recommended',
],
plugins: [
    // ...
    'react-refresh'
],
rules: {
    // ...
    'react-refresh/only-export-components': 'warn',
},

Contributing

If you have any suggestions or improvements, please feel free to create a pull request or submit an issue.

License

This project is licensed under the MIT license. Please see the LICENSE file for more information.