https://github.com/xmk-dev/eslint-config-lover
Lover's approach to JavaScript/TypeScript.
https://github.com/xmk-dev/eslint-config-lover
es2022 eslint eslint-config eslintconfig javascript styleguide typescript
Last synced: 2 months ago
JSON representation
Lover's approach to JavaScript/TypeScript.
- Host: GitHub
- URL: https://github.com/xmk-dev/eslint-config-lover
- Owner: xmk-dev
- License: mit
- Created: 2022-11-15T14:49:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T16:15:05.000Z (about 3 years ago)
- Last Synced: 2025-10-08T21:28:29.539Z (8 months ago)
- Topics: es2022, eslint, eslint-config, eslintconfig, javascript, styleguide, typescript
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/eslint-config-lover?activeTab=readme
- Size: 252 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESLint Config Lover
# [![npm version][npm-image]][npm-url]
[npm-image]:https://badge.fury.io/js/eslint-config-lover.svg
[npm-url]:http://npmjs.org/package/eslint-config-lover
Lover's approach to JavaScript and TypeScript.
## Description
This config helps maintain consistent codebase across many projects and contains many useful rules
that will improve your code quality. It's dedicated for JavaScript & TypeScript projects -
both back-end and front-end ones.
## Usage
### Install
```
npm i -D eslint-config-lover
```
Add the following entry to your .eslintrc file:
```json
{
"extends": ["lover"]
}
```
For TypeScript, create `tsconfig.eslint.json` file right next to your current `tsconfig.json`, that
looks like this:
```json
{
"extends": "./tsconfig.json",
"include": [
"src"
// all directories you would like to include in linting process
]
}
```