1.0.5 • Published 4 years ago

buidler-spdx-license-identifier v1.0.5

Weekly downloads
121
License
MIT
Repository
github
Last release
4 years ago

Buidler SPDX License Identifer

Prepend Solidity source files in Buidler projects with the SPDX License Identifier specified in package.json.

Installation

yarn add --dev buidler-spdx-license-identifier

Usage

Load plugin in Buidler config:

usePlugin('buidler-spdx-license-identifier');

Add configuration under the spdxLicenseIdentifier key:

optiondescriptiondefault
overwritewhether to overwrite existing SPDX license identifiersfalse
runOnCompilewhether to automatically prepend identifiers during compilationfalse
spdxLicenseIdentifier: {
  overwrite: true,
  runOnCompile: true,
}

The included Buidler task may be run manually:

yarn run buidler prepend-spdx-license

Files which do not contain a license identifier will be prepended with one. Files with a license identifier which does not match that which is specified in package.json may be updated, depending on configuration.

TypeScript Support

For TypeScript compatibility, add 'node_modules/buidler-spdx-license-identifier/type-extensions.d.ts' to the files array in tsconfig.json.