14a5214e82
* chore: install antlr-format-cli to format g4 files * style: format all g4 files * chore: apply antlr-format to lint-staged
6 lines
146 B
JavaScript
6 lines
146 B
JavaScript
module.exports = {
|
|
'*.js': [`prettier --write`],
|
|
'*.ts': [`prettier --write`],
|
|
'*.g4': [`antlr-format -c ./antlr.format.json -v`],
|
|
};
|