Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carimus/eslint-config-web
A base eslint config for Carimus web projects
https://github.com/carimus/eslint-config-web
Last synced: about 2 months ago
JSON representation
A base eslint config for Carimus web projects
- Host: GitHub
- URL: https://github.com/carimus/eslint-config-web
- Owner: Carimus
- Created: 2019-10-14T20:12:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T20:09:00.000Z (over 1 year ago)
- Last Synced: 2024-04-26T15:15:14.659Z (9 months ago)
- Language: JavaScript
- Size: 608 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Carimus ESLint Config for Web
The prettier config used by Carimus web projects. This config is a good base config for any JS project that uses
eslint.- Extends [`eslint-config-standard`](https://www.npmjs.com/package/eslint-config-standard) which is the eslint config
that enforces standard JS code standards. [Read more about those here](https://standardjs.com/).
- Uses `babel-eslint` parser with support for modules and `experimentalObjectRestSpread`.
- Includes the [`eslint-plugin-jest`](https://www.npmjs.com/package/eslint-plugin-jest) plugin and configuration
for e.g. Jest globals.
- Includes the [`eslint-config-prettier`](https://www.npmjs.com/package/eslint-config-prettier) preset config in
order to unset any rules that would conflict with prettier.
- Some minor rule overrides that:
- ban `var`
- ban `console` statement
- ban `undefined`
- require camel cased variable names
- some other minor tweaks built-up over time across projects to promote healthier code## Related Projects
- [`@carimus/eslint-config-react`](https://github.com/Carimus/eslint-config-react) for React Web projects
- [`@carimus/eslint-config-react-native`](https://github.com/Carimus/eslint-config-react-native) for React Native
projects
- [`@carimus/prettier-config`](https://github.com/Carimus/prettier-config) to configure Prettier.