
This patch adds an npmrc configuration file, which clears the default version tagging prefix. This brings this project in line with the standard tagging method used in openstack, rather than 'v1.0.0', it will use '1.0.0' as the tag. It also forces npm to attempt to gpg-sign any tags created via `npm version`. Change-Id: If7679f579b52633911bc5d6ee1f46dfae0104754
eslint-config-openstack
OpenStack has a set of style guidelines for clarity. OpenStack is a very large code base, spanning dozens of git trees, with over a thousand developers contributing every 6 months. As such, common style helps developers understand code in reviews, move between projects smoothly, and overall make the code more maintainable.
Even though eslint permits overriding rules on a per-project basis, it should be the goal of every project to stay as close to the common guidelines as possible.
Installation
npm install --save-dev eslint eslint-config-openstack
- Add
extends: "openstack"
to your.eslintrc
Description
Languages
JavaScript
100%