morpheusv2

A Matrix client written in Go-QT
git clone git://archive.git.mtrnord.blog/Nordgedanken/morpheusv2.git
Log | Files | Refs | README | LICENSE

.codeclimate.yml (446B)


      1 version: "2"         # required to adjust maintainability checks
      2 checks:
      3   method-complexity:
      4     config:
      5       threshold: 20
      6   method-lines:
      7     config:
      8       threshold: 40
      9   return-statements:
     10     config:
     11       threshold: 400
     12 
     13 plugins:
     14   govet:
     15     enabled: true
     16   golint:
     17     enabled: true
     18   gofmt:
     19     enabled: true
     20   fixme:
     21     enabled: true
     22     config:
     23       strings:
     24       - FIXME
     25       - BUG
     26       - TODO
     27 
     28 ratings:
     29   paths:
     30     - "**.go"