# miclint 

This is a CLI tool for linting codebases using `eslint-config-mic`. You can run it like this:

```bash
# normal
miclint

# with support for flow types
miclint --flow

# to fix easy problems
miclint --fix
```

If you would prefer a more custom setup, you can integrate `eslint-config-mic` into your existing `eslint` setup For more information on that, go [here](/eslint-config-mic).

## Installation

Download node at [nodejs.org](http://nodejs.org) and install it, if you haven't already.

```sh
npm install miclint --save-dev
```


## Tests

```sh
npm install
npm test
```

## Dependencies

- [babel-eslint](https://github.com/babel/babel-eslint): Custom parser for ESLint
- [eslint](https://github.com/eslint/eslint): An AST-based pattern checker for JavaScript.
- [eslint-config-airbnb](https://github.com/airbnb/javascript): Airbnb&#39;s ESLint config, following our styleguide
- [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel): an eslint rule plugin companion to babel-eslint
- [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import): Import with sanity.
- [eslint-plugin-jsx](https://github.com/jkroso/eslint-plugin-jsx): JSX specific linting rules for ESLint
- [eslint-plugin-jsx-a11y](https://github.com/evcohen/eslint-plugin-jsx-a11y): A static analysis linter of jsx and their accessibility with screen readers.
- [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react): React specific linting rules for ESLint
- [standard-engine](https://github.com/flet/standard-engine): Wrap your standards in a tortilla and cover it in special sauce.

## Dev Dependencies


None

## License

MIT

_Generated by [package-json-to-readme](https://github.com/zeke/package-json-to-readme)_
