Skip to content

Commit

Permalink
chore(commitlint): add commitlint (americanexpress#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
James Singleton authored Feb 4, 2020
1 parent cbf8628 commit c4b898f
Show file tree
Hide file tree
Showing 4 changed files with 1,241 additions and 56 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ node_js:
- "9"
- "10"
- "12"
before_install:
# Create a master branch for commitlint
# https://github.com/conventional-changelog/commitlint/issues/6
- git remote set-branches origin master && git fetch
deploy:
on:
tags: true
Expand Down
20 changes: 20 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright 2020 American Express Travel Related Services Company, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,either express
* or implied. See the License for the specific language governing permissions and limitations
* under the License.
*/

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'scope-case': [2, 'always', ['pascal-case', 'camel-case', 'kebab-case']],
},
};
Loading

0 comments on commit c4b898f

Please sign in to comment.