fix(go): indent const declaration

https://github.com/nvim-treesitter/nvim-treesitter/issues/3104
This commit is contained in:
kiyan 2022-07-02 12:47:05 +02:00 committed by Stephan Seitz
parent dcc5895e7c
commit 6eb35103d0
3 changed files with 12 additions and 4 deletions

View file

@ -0,0 +1,7 @@
package main
const (
ExampleOne = iota
ExampleTwo
ExampleThree
)