One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
A Pen by Supun Praneeth on CodePen.
| <?php | |
| /** | |
| * Class User | |
| */ | |
| class User | |
| { | |
| /** | |
| * @return string | |
| */ |
| { | |
| "extends": [ | |
| "airbnb", | |
| "airbnb-typescript" | |
| ], | |
| "parserOptions": { | |
| "project": "./tsconfig.json" | |
| }, | |
| "plugins": ["jest"], | |
| "rules": |