@dcos/tslint-config

Shared tslint config for DCOS projects using typescript

Usage no npm install needed!

<script type="module">
  import dcosTslintConfig from 'https://cdn.skypack.dev/@dcos/tslint-config';
</script>

README

tslint-config

Shared tslint config for DCOS projects using typescript

Commits

You should follow conventional commit formatting rules, as they provide a framework to write explicit messages that are easy to comprehend when looking through the project history and enable automatic change log generation.

These Guidelines were written based on AngularJS Git Commit Message Conventions.

<type>[optional scope]: <description>

[optional body]

[optional footer]

Release / Publishing

After your PR is merged to master to cut a release is very simple, assuming you are on master branch follow the steps below.

Fetch all git tags

git fetch origin --tags

Then run the command to automatically update the package.json, changelog.md and create a new release commit.

npm run release

Now push the latest commit and the tag created (run git tag to see all tags).

git push origin master && git push origin TAG_VERSION

And finally publish to npm.

npm publish