1.0.0 • Published 12 months ago

eslint-plugin-license-notice v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 months ago

eslint-plugin-license-notice

Ensure all your source files include the relevant license header notice

install it

  • with npm
npm install eslint-plugin-license-notice --save-dev
  • with yarn
yarn add eslint-plugin-license-notice -D -W

use it

  • add the eslint plugin to your .eslintrc.js
module.exports = {
    ...,
    plugins: [
        'license-notice',
    ],
    rules: {
        'license-notice/include': [
            'error', {
                license: 'Apache-2.0',
                copyRightYear: '<year>',
                copyRightName: '<name>'
            }
        ]
    }
}
1.0.0

12 months ago