# htmlhint-config-htmlacademy
> The standart htmlhint config

## Instalation
```bash
npm install -D htmlhint
```

## Usage
1. Copy `.htmlhintrc` to your project root

2. Create package script

**package.json**

```json
{
    "scripts": {
        "test": "htmlhint path/to/html/files/*.html"
    }
}
```
