Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenmass committed Oct 19, 2016
0 parents commit 18ccbd9
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*.swo
*.swp
.DS_Store
.idea/
.scripts/
.vagrant/
bin/
bower_components/
coverage/
dev/
node_modules/
config/databag.json
8 changes: 8 additions & 0 deletions .jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"preset": "airbnb",

"requireTrailingComma": false,
"maximumLineLength": 200,
"disallowMultipleVarDecl": false,
"safeContextKeyword": ["_this"]
}
25 changes: 25 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"bitwise": true,
"browser": true,
"browserify": true,
"devel": true,
"eqnull": true,
"expr": true,
"esversion": 6,
"immed": true,
"indent": 2,
"laxbreak": true,
"loopfunc": true,
"maxlen": 200,
"mocha": true,
"newcap": true,
"noarg": true,
"noempty": true,
"nonew": true,
"strict": true,
"sub": true,
"trailing": true,
"undef": true,
"unused": true,
"globals":{}
}
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "mol-conventional-changelog",
"version": "1.0.0",
"description": "MOL Commitizen adapter following the conventional-changelog format",
"main": "index.js",
"scripts": {
"test": "echo \"No test specified\" && exit 0"
},
"author": "MailOnline <fe@mailonline.co.uk>",
"homepage": "https://github.com/MailOnline/mol-conventional-changelog",
"repository": {
"type": "git",
"url": "git@github.com:MailOnline/mol-conventional-changelog.git"
},
"license": "UNLICENSED"
}

0 comments on commit 18ccbd9

Please sign in to comment.