Skip to content

kevinrambaud/eslint-config-kevinrambaud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-config-kevinrambaud

Travis npm npm Styled with prettier MIT licensed

Personal ESLint configuration that includes airbnb-base, prettier and some personal rules.

Installation

npm i -D eslint-config-kevinrambaud

Usage

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: kevinrambaud

Config 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

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request

Credits

License

MIT

About

Personal ESLint config that includes airbnb-base, prettier and some personal rules.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •