Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/farischt/eslint-config
Custom shared eslint-config
https://github.com/farischt/eslint-config
eslint eslint-config
Last synced: 26 days ago
JSON representation
Custom shared eslint-config
- Host: GitHub
- URL: https://github.com/farischt/eslint-config
- Owner: farischt
- Created: 2024-02-22T21:13:46.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-10T11:16:57.000Z (7 months ago)
- Last Synced: 2024-10-05T07:50:32.832Z (about 1 month ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@farischt/eslint-config
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @farischt/eslint-config
This library contains the [ESLint](https://eslint.org) configuration used by [Farischt](https://faris.chtatou.org).
## Installing the library
```bash
npm install --save-dev @farischt/eslint-config
```## Using the library
To use the library, you'll need to add the following to your `.eslintrc.json` file:
```json
{
"extends": "@farischt"
}
```## Publishing updates
In order to publish an update of the library, you'll need to:
- Update the version field in the `package.json` file;
- Stage and commit all changes;
- Tag the new commit with the new version number; and
- Push all changes to the GitHub repository.This can be done using the following commands:
```bash
npm version patch
git push origin main --tags
```A GitHub Actions workflow will then automatically publish the package to the NPM registry.