5 lines
117 B
Bash
5 lines
117 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# This will format all js,css,html
|
||
|
|
# argument 1: directory or file to format
|
||
|
|
prettier --write $@
|