Skip to content

Commit

Permalink
default config and small README/workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
burtek committed Nov 11, 2021
1 parent 0d6fa5b commit 7c38011
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Bump Version and Release'
name: 'Make github and npm releases'

on:
push:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
make-release:
name: 'Bump Version on master'
name: 'Make github and npm releases'
runs-on: ubuntu-latest

steps:
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# @dtrw/eslint-config

This is repository with `eslint` configs for multiple purposes that are used in my other projects.
![npm version](https://badge.fury.io/js/@dtrw%2Feslint-config.svg)
![NPM License](https://img.shields.io/npm/l/@dtrw/eslint-config)

This is repository with my `eslint` configs for multiple purposes that are used (or will be used) in my other projects.

## Install

Expand All @@ -16,12 +19,12 @@ npm i -D @dtrw/eslint-config

## Usage

To use any of the configs put `@dtrw/eslint-config/<name>.js` in your eslint config's `extends` section, i.e.:
To use any of the configs put `@dtrw/eslint-config/<name>` in your eslint config's `extends` section, i.e.:

```json
{
"extends": [
"@dtrw/eslint-config/eslint-config-base.js"
"@dtrw/eslint-config/eslint-config-base"
]
}
```
Expand Down
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import config from './eslint-config-base';

export default config;

0 comments on commit 7c38011

Please sign in to comment.