akash-network / support

Akash Support and Issue Tracking
Apache License 2.0
5 stars 4 forks source link

Make the linter require the parentheses version of constant assignment #65

Open hydrogen18 opened 3 years ago

hydrogen18 commented 3 years ago

We need to update our linter to require this syntax

const (
X = 1
Y = 2 
Z = 3  )

over this syntax

const X = 1
const Y = 2
const Z = 3