https://github.com/farischt/eslint-config
Custom shared eslint-config
https://github.com/farischt/eslint-config
eslint eslint-config
Last synced: 6 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-16T12:01:19.000Z (8 months ago)
- Last Synced: 2025-01-10T13:40:46.879Z (6 months ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@farischt/eslint-config
- Size: 291 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.