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
For a recommended linter configuration see https://guide.meteor.com/code-style.html#eslint
Installation
$ meteor add dburles:eslint
Usage
- Configure your project to use eslint. See the code style section on eslint in the Meteor guide.
- Add an
.eslintrc
file to your project root.
Example .eslintrc
1{ 2 "extends": "airbnb", 3 "parserOptions": { 4 "ecmaVersion": 6, 5 "sourceType": "module" 6 } 7}
License
MIT