[
    {
        "tool": "trailing-spaces",
        "files": [ "**", "!node_modules" ]
    },
    {
        "tool": "finalnewline",
        "files": ["**", "!node_modules" ]
    },
    {
        "tool": "indentation",
        "files": [ "**/*.js", "!node_modules" ],
        "config": {
            "indentChar": " ",
            "indentNumber": 4
        }
    },
    {
        "tool": "jshint",
        "files": [ "**/*.js", "!node_modules" ],
        "config": ".jshintrc"
    },
    {
        "tool": "json",
        "files": ["package.json"],
        "config": {
            "canonical": false,
            "indent": 2
        }
    },
    {
        "tool": "npm-packages",
        "files": [ "package.json" ]
    },
    {
        "tool": "json",
        "files": [ "**/*.json", "!node_modules", "!package.json" ]
    }
]
