JPeer264 / node-semantic-git-commit-cli

A CLI for semantic git commits
https://www.npmjs.com/package/semantic-git-commit-cli
MIT License
147 stars 11 forks source link

Style: Using the same writing style for `.sgcrc` #43

Closed aichbauer closed 6 years ago

aichbauer commented 7 years ago

Currently we have two different writing styles in our .sgcrc

  "lowercaseTypes": false,
  "initial-commit": {
    "isEnabled": true,
    "emoji": ":tada:",
    "message": "Initial commit"
  },

As you see we use camelcase (e.g. lowercaseTypes) and separating them with a - (e.g. initial-commit).

Maybe we should use camelcase for everything?