0.0.2 • Published 6 years ago

tslint-config-coda-base v0.0.2

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

eslint-config-coda-base

This package provides CODA's base TypeScript tslint.json (without React) as an extensible shared configuration

Usage

Prequesite: Node must be installed

  1. Install TSLint: $ yarn global add tslint
  2. Configure your editor to integrate with TSLint
  3. Add the package to the devDependencies section of your package.json $ yarn add tslint-config-coda-base --dev
  4. Add "extends": "tslint-config-coda-base" to your tslint.json.
  5. :sparkles: Start linting! :sparkles:

Contributing

Feel free to suggest changes to the rules. Before submitting a pull request please ensure that:

Publishing

To publish this repo, please:

  • Create a PR to master
  • Wait for approval
  • Select the 'Squash and Merge' option
  • Add a title and body that follows the Conventional Commits Specification
  • When you're ready to release to npm:
    • git checkout master
    • git pull origin master
    • yarn release
    • git push --follow-tags origin master && npm publish
  • standard-version does the following:
    • Bumps the version in package.json (based on your commit history)
    • Uses conventional-changelog to update CHANGELOG.md
    • Commits package.json (et al.) and CHANGELOG.md
    • Tags a new release