https://github.com/itsmunim/eslint-plugin-core-practices
Rules that enforce clean coding practices in eslint
https://github.com/itsmunim/eslint-plugin-core-practices
Last synced: 6 months ago
JSON representation
Rules that enforce clean coding practices in eslint
- Host: GitHub
- URL: https://github.com/itsmunim/eslint-plugin-core-practices
- Owner: itsmunim
- Created: 2022-07-23T18:05:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-24T09:53:41.000Z (about 4 years ago)
- Last Synced: 2025-10-01T09:54:45.926Z (10 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# eslint-plugin-core-practices
Custom lint rules for Javascript projects to ensure core coding practices apart from all the other standard rules.
Some of the core principles it enforces-
1. Function name starting with verb
2. Class name not starting with verb
3. Boolean names starting with `is`, `can`, `should` etc.
There will be many more added pretty soon.
## When should you use it?
If you are continuously raising these points in different code reviews and thinking of having a lint gate instead of you repeating yourself would be much better- then this is for you!