Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/untile/eslint-config-untile
https://github.com/untile/eslint-config-untile
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/untile/eslint-config-untile
- Owner: untile
- License: mit
- Created: 2020-07-30T20:03:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-14T16:26:30.000Z (almost 2 years ago)
- Last Synced: 2024-12-19T21:35:56.602Z (28 days ago)
- Language: JavaScript
- Size: 56.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-untile
Untile-flavored ESLint config.
## Installation
```sh
$ npm install eslint @untile/eslint-config-untile --save-dev
```## Usage
Create an `.eslintrc.yml` file with the following:
```yaml
extends: untile
```Add the following `script` to your `package.json`:
```json
{
"scripts": {
"lint": "eslint ."
}
}
```and run the linter with:
```sh
$ npm run lint
```## Releases
Be sure to have configured `NPM_TOKEN` in your globals.
```bash
npm version [ | major | minor | patch] -m "Release %s"
git push origin master && git push --tags
```