lava-oushudb-dt-sql-parser/.lintstagedrc.js
Hayden 14a5214e82
support format g4 (#232)
* chore: install antlr-format-cli to format g4 files

* style: format all g4 files

* chore: apply antlr-format to lint-staged
2023-12-12 20:05:21 +08:00

6 lines
146 B
JavaScript

module.exports = {
'*.js': [`prettier --write`],
'*.ts': [`prettier --write`],
'*.g4': [`antlr-format -c ./antlr.format.json -v`],
};