# eslint-config-singpath

> Default ESLint configuration for Singpath projects.

Latest version **0.0.6** (published 2016-09-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-config-singpath
pnpm add eslint-config-singpath
yarn add eslint-config-singpath
bun add eslint-config-singpath
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2016-09-14 |
| First published | 2016-06-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Chris Boesch |
| Maintainers | dinoboff |
| Keywords | singpathconfig, eslint-config, eslint |

## Links

- npm: https://www.npmjs.com/package/eslint-config-singpath
- Repository: https://github.com/singpath/example-app
- Homepage: https://github.com/singpath/example-app#readme
- Issues: https://github.com/singpath/example-app/issues/
- npm.io page: https://npm.io/package/eslint-config-singpath

## Dependencies (1)

- [js-yaml](https://npm.io/package/js-yaml.md) ^3.5.1

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 0.0.6 (latest) — 2016-09-14
- 0.0.5 — 2016-09-14
- 0.0.4 — 2016-08-19
- 0.0.3 — 2016-07-10
- 0.0.2 — 2016-06-22
- 0.0.1 — 2016-06-21
- 0.0.0 — 2016-06-21

## README

# SingPath Linting Configuration

[Eslint](http://eslint.org)
| [Configuring](http://eslint.org/docs/user-guide/configuring)
| [Rules](http://eslint.org/docs/rules/)

Contains the default ESLint configuration for SingPath projects.


## Installation

You can install ESLint using npm:
```js
npm install eslint@3 --save-dev
```

Then install this configuration:
```js
npm install eslint-config-singpath --save-dev
```


## Usage

Add a `.eslintrc.yml` file (for node 4+ project):
```yaml
extends: eslint-config-singpath/node
```

or for a ES6 module based project:
```yaml
extends: eslint-config-singpath/module
```

Then create a "lint" command; e.g., to lint `src/` and `test/` js files, add to
`package.json` (only showing the `script` field):
```json
{
  "scripts": {
    "lint": "eslint src/ tests/"
  }
}
```

To lint the folders:
```
npm run lint
```

To attempt to fix them:
```
npm run lint -- --fix
```

---
_Source: https://npm.io/package/eslint-config-singpath · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
