1.3.0 • Published 1 year ago

@liene-putnina/eslint-config-lintmyride v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

eslint-config-lintmyride

Overview

This config is aimed at React projects that use TypeScript. It extends airbnb ESLint config, has Prettier and React integration. The package gives you a ready-to-use eslint/prettier config that you can easily integrate into your project without having to set everything up from scratch.

Installation

To install the package, run:

npm install -D @liene-putnina/eslint-config-lintmyride

or

yarn add -D @liene-putnina/eslint-config-lintmyride

After you've installed the main package, you need to install its peer dependencies. These are needed for the linting and formatting to work properly. Here are the additional packages you need to install in your React TypeScript project.

@typescript-eslint/parser @typescript-eslint/eslint-plugin eslint eslint-config-airbnb eslint-config-airbnb-typescript eslint-config-prettier eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y eslint-plugin-prettier prettier

Usage

Create config files for ESLint ( .eslintrc.js ) and Prettier ( .prettierrc.js ) and add this config there as seen in the examples below

// .eslintrc.js

const eslintConfig = require('@liene-putnina/eslint-config-lintmyride');

module.exports = {
  ...eslintConfig,
  parserOptions: {
    ...eslintConfig.parserOptions,
    project: ['./tsconfig.json'],
    tsconfigRootDir: __dirname,
  },
  /*The rules in parserOptions are needed to ensure that ESLint won't lint the files it's
  not supposed to and will follow the rules layed out in the local TypeScript config */
};
// .prettierrc.js

module.exports = {
    ...require('@liene-putnina/eslint-config-lintmyride/src/prettier.js'),
};

If there are parts of your project you do NOT want to lint or format, add them to .eslintignore and .prettierignore files respectively.

See the example project for a more comprehensive view of the setup and usage.

License

Licensed under MIT License.

1.2.0

1 year ago

1.3.0

1 year ago

1.0.8

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago