See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| from abc import ABC, abstractmethod | |
| class Budget: | |
| def __init__(self, value): | |
| self._value = value | |
| @property | |
| def value(self): | |
| return self._value |
| class Item: | |
| def __init__(self, name, price): | |
| self._name = name | |
| self._price = price | |
| @property | |
| def name(self): | |
| return self._name | |
| @property |
| class Budget: | |
| def __init__(self, value): | |
| self._value = value | |
| @property | |
| def value(self): | |
| return self._value | |
| class TaxCalculator: | |
| def calculate(self, budget, tax_strategy): |
| # These are some examples of commonly ignored file patterns. | |
| # You should customize this list as applicable to your project. | |
| # Learn more about .gitignore: | |
| # https://www.atlassian.com/git/tutorials/saving-changes/gitignore | |
| # Node artifact files | |
| node_modules/ | |
| dist/ | |
| *.lock |
| { | |
| "name": "project", | |
| "version": "1.0.0", | |
| "main": "src/bin/server.ts", | |
| "repository": "", | |
| "author": "", | |
| "license": "MIT", | |
| "private": true, | |
| "scripts": { | |
| "dev": "nodemon src/bin/server.ts" |
| { | |
| "swagger" : "2.0", | |
| "info" : { | |
| "description" : "This is a sample Petstore server. You can find \nout more about Swagger at \n[http://swagger.io](http://swagger.io) or on \n[irc.freenode.net, #swagger](http://swagger.io/irc/).\n", | |
| "version" : "1.0.0", | |
| "title" : "BigFUT", | |
| "termsOfService" : "http://swagger.io/terms/", | |
| "contact" : { | |
| "email" : "[email protected]" | |
| }, |