1.0.3 • Published 6 years ago

eslint-config-kevinrambaud v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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