Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lowmess/eslint-config-lowmess
https://github.com/lowmess/eslint-config-lowmess
eslint eslint-config
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lowmess/eslint-config-lowmess
- Owner: lowmess
- Created: 2017-05-17T05:29:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T03:06:25.000Z (over 1 year ago)
- Last Synced: 2024-04-25T15:21:40.856Z (7 months ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Size: 679 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is my ESLint config. It is meant to be used with [Prettier](https://github.com/prettier/prettier) and [`prettier-config-lowmess`](https://github.com/lowmess/prettier-config-lowmess). As such, any conflicting stylistic rules have been disabled.
🌮
## Usage in mixed JS & TS environments
Annoyingly, including an override for `.ts` files in the base config means any project that uses it needs to install TypeScript as a dependency. Boo.
```json
{
"extends": ["lowmess"],
"overrides": [
{
"files": ["**/*.ts?(x)"],
"extends": ["lowmess/typescript"]
}
]
}
```