Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mansagroup/eslint-config
Sharable ESLint configurations for the coding standards and rules at Mansa.
https://github.com/mansagroup/eslint-config
eslint eslint-config fp functional-programming javascript mansa mansagroup nextjs nodejs react typescript
Last synced: 8 days ago
JSON representation
Sharable ESLint configurations for the coding standards and rules at Mansa.
- Host: GitHub
- URL: https://github.com/mansagroup/eslint-config
- Owner: MansaGroup
- License: mit
- Created: 2022-03-16T10:58:27.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-06T20:59:41.000Z (over 1 year ago)
- Last Synced: 2024-11-22T10:49:44.966Z (2 months ago)
- Topics: eslint, eslint-config, fp, functional-programming, javascript, mansa, mansagroup, nextjs, nodejs, react, typescript
- Language: JavaScript
- Homepage:
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Mansa's ESLint configuration
![License](https://img.shields.io/github/license/MansaGroup/eslint-config?style=flat-square) ![GitHub Stars](https://img.shields.io/github/stars/MansaGroup/eslint-config?style=flat-square)
Sharable ESLint configurations for the coding standards and rules at
Mansa.## Rulesets
| Ruleset name | Description |
| ------------- | ----------------------------------------------------------- |
| `recommanded` | Common rules for general JS/TS |
| `node` | Rules specific to Node.js applications (mainly for backend) |
| `react` | Rules specific to React/Next.js applications (for frontend) |
| `fp` | Additional rules for the fellow functional programmers |## Usage
First, install our sharable configuration as an npm package:
```bash
npm i -D @mansagroup/eslint-config
```Then, modify our ESLint configuration, saying `.eslintrc.js` to extends it
from one or more rulesets:```js
{
"extends": [
"@mansagroup/eslint-config/recommanded",
"@mansagroup/eslint-config/node"
]
}
```## License
This project is [MIT licensed](LICENSE.txt).
## Contributors
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Jérémy Levilain
💻 🤔
Vincent Dhennin
💻 🤔
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!