https://github.com/matchilling/styleguide-js
My most reasonable approach to JavaScript ... 💩
https://github.com/matchilling/styleguide-js
styleguide styleguide-javascript
Last synced: about 2 months ago
JSON representation
My most reasonable approach to JavaScript ... 💩
- Host: GitHub
- URL: https://github.com/matchilling/styleguide-js
- Owner: matchilling
- License: gpl-3.0
- Created: 2016-11-14T23:51:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-27T21:48:25.000Z (almost 7 years ago)
- Last Synced: 2025-03-08T19:17:54.905Z (2 months ago)
- Topics: styleguide, styleguide-javascript
- Language: JavaScript
- Homepage: https://www.matchilling.com
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Personal JavaScript Styleguide
My personal JavaScript styleguide derives mainly from the [AirBnb JS rule book](https://github.com/airbnb/javascript) with some little tweeks which are denoted in the repository.
## Usage
Add `eslint-config-matchilling` to your `package.json`.
```json
{
"devDependencies": {
"eslint-config-matchilling": "^1.0.0",
},
"eslintConfig": {
"extends": [
"eslint-config-matchilling"
]
}
}
```## Recommended editor plugins
- [atom](https://atom.io/packages/eslint)
- [VIM](https://github.com/vim-syntastic/syntastic/tree/master/syntax_checkers/javascript)For further integrations check [eslint.org integrations website](http://eslint.org/docs/user-guide/integrations).
## License
This distribution is covered by the **GNU GENERAL PUBLIC LICENSE**, Version 3, 29 June 2007.
## Support & Contact
Having trouble with this repository? Check out the documentation at the repository's site or contact [email protected] and we'll help you sort it out.
Happy Coding
:v: