Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alex-d/eslint-config
- Owner: Alex-D
- Created: 2021-05-23T20:38:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T13:17:12.000Z (7 months ago)
- Last Synced: 2024-08-11T03:16:47.022Z (3 months ago)
- Topics: eslint, javascript, typescript
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@alex-d/eslint-config
- Size: 477 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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',
},
}
```