dburles:eslint

v1.1.0Published 8 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meteor Eslint

The pluggable linting utility for JavaScript and JSX. This package source was adapted from the core Meteor jshint package.

This package is no longer supported

Installation

$ meteor add dburles:eslint

Usage

  1. Configure your project to use eslint. See the code style section on eslint in the Meteor guide.
  2. Add an .eslintrc file to your project root.

Example .eslintrc

1{
2  "extends": "airbnb",
3  "parserOptions": {
4    "ecmaVersion": 6,
5    "sourceType": "module"
6  }
7}

Example project

License

MIT