Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atjn/eslint-config
My personal JavaScript code style
https://github.com/atjn/eslint-config
Last synced: about 1 month ago
JSON representation
My personal JavaScript code style
- Host: GitHub
- URL: https://github.com/atjn/eslint-config
- Owner: atjn
- License: mit
- Created: 2021-03-05T12:42:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T14:12:54.000Z (over 1 year ago)
- Last Synced: 2024-12-06T01:07:11.370Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 615 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# My personal JavaScript code style
[![npm version](https://img.shields.io/npm/v/@atjn/eslint-config?style=flat-square)](https://www.npmjs.com/package/@atjn/eslint-config)
[![eslint version](https://img.shields.io/npm/dependency-version/@atjn/eslint-config/peer/eslint?style=flat-square&label=eslint)](https://www.npmjs.com/package/@atjn/eslint-config?activeTab=dependencies)This is my personal JavaScript code style, defined as an [ESLint](https://eslint.org/) shareable configuration. My style is:
### Secure
By enforcing best practices, my code becomes much more secure and stable.
### Loosely styled
I have a loosely defined coding style which helps make the code more consistent and readable. I purposefully don't get too specific with small details because I often find that slightly varying my code style can help me write more efficient and readable code.
### Documented
By requiring JSDoc comments for all files and functions, it becomes much easier to read through and understand my code.