Alley's ESLint Configuration
Alley's standard ESLint configuration, which includes support for React, React Hooks, and TypeScript.
Background
This package leverages Airbnb's ESLint config and Airbnb Typescript along with Babel and Typescript ESLint parsers making it easy to configure JavaScript linting for projects that might also include React and TypeScript.
Releases
This package adheres to semantic versioning and is released on https://www.npmjs.com/.
Use
First, install the package from npm:
npm install --save-dev @alleyinteractive/eslint-config
Next, choose a configuration from the available ESLint configurations.
This package exports four ESLint configurations for usage.
-
@alleyinteractive/eslint-config
- Default configuration that supports React. -
@alleyinteractive/eslint-config/base
- Base configuration similar to Airbnb's base configuration without supporting React plugins. -
@alleyinteractive/eslint-config/typescript
- Typescript support without React plugin support. -
@alleyinteractive/eslint-config/typescript-react
- Typescript and React support.
Then create an .eslintrc.json
file in your project that extends the configuration:
{
"extends": ["@alleyinteractive/eslint-config"]
}
Finally, add lint
commands to your package.json
:
{
"scripts": {
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx --fix ."
}
}
If you are resolving your modules with a Webpack resolver configuration add the following to the
projects .eslintrc.json
file:
"settings": {
"import/resolver": "webpack"
},
From Source
To work on this repository:
git clone git@github.com:alleyinteractive/alley-scripts.git
cd packages/eslint-config
npm ci
In order to test the config with another project, you will need to point to this package, e.g.:
{
"devDependences": {
"@alleyinteractive/eslint-config": "file:../path/to/alley-scripts/packages/eslint-config"
}
}
Then simply run npm install
and npm will symlink to this folder, and you can work on your changes.
Changelog
This project keeps a changelog.
Development Process
See instructions above on installing from source. Pull requests are welcome from the community and will be considered for inclusion. Releases follow semantic versioning and are shipped on an as-needed basis.
Contributing
See our contributor guidelines for instructions on how to contribute to this open source project.
Project Structure
This is an npm package that is published to https://www.npmjs.com/. Dependencies are defined in package.json
and the
ESLint configuration is found in index.js
.
Third-Party Dependencies
Third party dependencies are managed by npm
and are visible in package.json
. This package intends to reduce the
dependency load on projects that use it by managing the dependencies itself.
Related Efforts
Maintainers
Contributors
Thanks to all of the contributors to this project.
License
This project is licensed under the GNU Public License (GPL) version 2 or later.