diff options
Diffstat (limited to 'lib/js_checker/license_definitions.js')
-rw-r--r-- | lib/js_checker/license_definitions.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/js_checker/license_definitions.js b/lib/js_checker/license_definitions.js index 41cfb7b..d5fcd83 100644 --- a/lib/js_checker/license_definitions.js +++ b/lib/js_checker/license_definitions.js @@ -247,5 +247,23 @@ exports.licenses = { type: type.SHORT } ] + }, + WTFPL: { + licenseName: 'Do What The F*ck You Want To Public License (WTFPL)', + canonicalUrl: [ + 'http://www.wtfpl.net/txt/copying/', + 'magnet:?xt=urn:btih:723febf9f6185544f57f0660a41489c7d6b4931b&dn=wtfpl.txt' + ], + identifier: 'WTFPL', + licenseFragments: [ + { + text: 'DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE', + type: type.SHORT + }, + { + text: '0. You just DO WHAT THE FUCK YOU WANT TO.', + type: type.SHORT + } + ] } }; |