Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alex-d/eslint-config

ESLint ruleset for TypeScript and JavaScript
https://github.com/alex-d/eslint-config

eslint javascript typescript

Last synced: about 1 month ago
JSON representation

ESLint ruleset for TypeScript and JavaScript

Awesome Lists containing this project

README

        

# ESLint config for TypeScript and JavaScript

These are my settings for ESLint

## Install

```sh
npx install-peerdeps --dev @alex-d/eslint-config
```

## .eslintrc.js

```js
/* eslint-env node, browser:false */

module.exports = {
extends: [
'@alex-d/eslint-config',
],
parserOptions: {
project: './tsconfig.json',
},
}
```