···11+# mrm-lab
22+33+experimental playground of [mrm](https://mrm.js.org/)
44+55+## How to play
66+77+Try to commit a broken file and see let us observe how Prettier, set up by mrm, prevent the commit!
88+99+```sh
1010+> git clone https://github.com/shuuji3/mrm-lab && cd $_
1111+> git reset @^
1212+> git add .
1313+> git commit -m 'Commit a bad change'
1414+✔ Preparing...
1515+⚠ Running tasks...
1616+ ❯ Running tasks for *.{js,jsx,scss,css,html,md}
1717+ ✖ prettier --write --loglevel warn [FAILED]
1818+↓ Skipped because of errors from tasks. [SKIPPED]
1919+✔ Reverting to original state because of errors...
2020+✔ Cleaning up...
2121+2222+✖ prettier --write --loglevel warn:
2323+[error] hello.js: SyntaxError: Unexpected token, expected "," (4:21)
2424+[error] 2 |
2525+[error] 3 | 1 + 2;
2626+[error] > 4 | console.log("hello";
2727+[error] | ^
2828+[error] 5 | const x = 1;
2929+[error] 6 |
3030+[error] 7 |
3131+```