1.0.3 • Published 7 years ago
eslint-config-kevinrambaud v1.0.3
eslint-config-kevinrambaud
Personal ESLint configuration that includes airbnb-base, prettier and some personal rules.
Installation
npm i -D eslint-config-kevinrambaudUsage
Create an eslint configuration file at the root of your project. This file can either be .eslintrc, .eslintrc.json, .eslintrc.js or .eslintrc.yml.
JSON config format example
{
"extends": "kevinrambaud"
}Javascript config format example:
module.exports = {
extends: "kevinrambaud"
};YAML config format example:
extends: kevinrambaudConfig setup directly in package.json
{
"name": "your-new-package",
"version": "1.0.0",
"private": true,
"devDependencies": {
"eslint-config-kevinrambaud": "^1.0.0"
},
"eslintConfig": {
"extends": "kevinrambaud"
}
}Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request
Credits
License
MIT