license config, copyright notices

This commit is contained in:
Timo Hocker 2020-04-16 07:45:48 +02:00
parent 2094287af8
commit 05d4839dea
20 changed files with 91 additions and 20 deletions

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
module.exports = { module.exports = {

8
.liconfig.json Normal file
View File

@ -0,0 +1,8 @@
{
"has_license": true,
"license": "BSD-3-Clause",
"author": "Timo Hocker",
"company": "SapphireCode",
"email": "timo@scode.ovh",
"software": "Snippeteer"
}

View File

@ -1,5 +1,12 @@
#!/usr/bin/env node #!/usr/bin/env node
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
'use strict'; 'use strict';
// @ts-ignore // @ts-ignore

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
/* eslint-disable no-process-exit */ /* eslint-disable no-process-exit */

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
module.exports = { module.exports = {

View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
export interface Snippet { export interface Snippet {
start(cwd: string): Promise<void>; start(cwd: string): Promise<void>;
} }

7
lib/asset.d.ts vendored
View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
declare module '*.asset' { declare module '*.asset' {
const content: any; const content: any;
export default content; export default content;

7
lib/enquirer.d.ts vendored
View File

@ -1 +1,8 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
declare module 'enquirer'; declare module 'enquirer';

View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
import path from 'path'; import path from 'path';
import fs from 'fs-extra'; import fs from 'fs-extra';
import { AutoComplete } from 'enquirer'; import { AutoComplete } from 'enquirer';

View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
import { CopyrightOptions } from './copyright_options'; import { CopyrightOptions } from './copyright_options';
export class CopyrightGenerator { export class CopyrightGenerator {

View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
export class CopyrightOptions { export class CopyrightOptions {
public has_license = false; public has_license = false;
public license = ''; public license = '';

View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
/* eslint-disable no-await-in-loop */ /* eslint-disable no-await-in-loop */
import path from 'path'; import path from 'path';
import fs from 'fs-extra'; import fs from 'fs-extra';

View File

@ -1,3 +1,10 @@
/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, April 2020
*/
/* eslint-disable no-await-in-loop */ /* eslint-disable no-await-in-loop */
import path from 'path'; import path from 'path';
import fs from 'fs-extra'; import fs from 'fs-extra';

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
/* eslint-disable no-magic-numbers */ /* eslint-disable no-magic-numbers */

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
/* eslint-disable no-magic-numbers */ /* eslint-disable no-magic-numbers */

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
/* eslint-disable no-sync */ /* eslint-disable no-sync */

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
/* eslint-disable no-process-exit */ /* eslint-disable no-process-exit */

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
/* eslint-disable no-sync */ /* eslint-disable no-sync */

View File

@ -1,8 +1,8 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */
module.exports = { module.exports = {

View File

@ -1,7 +1,7 @@
/* /*
* Copyright (C) Sapphirecode - All Rights Reserved * Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause. * This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details. * See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, March 2020 * Created by Timo Hocker <timo@scode.ovh>, April 2020
*/ */