#!/usr/bin/env bash # Check editorconfig if ! editorconfig-checker; then printf "%b\n" \ "\nCode is not aligned with .editorconfig" \ "Review the output and commit your fixes" >&2 exit 1 fi