eslint-config-kevinrambaud

1.0.3 • Public • Published

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

Package Sidebar

Install

npm i eslint-config-kevinrambaud

Weekly Downloads

2

Version

1.0.3

License

MIT

Unpacked Size

4.54 kB

Total Files

4

Last publish

Collaborators

  • kevinrambaud