b7f285d733
Provide all licenses used in the project in a LICENSES folder and add SPDX license and copyright information for all files in accordance with the Reuse Software[0] specification. The copyright information is based on the file's git history, using a fairly generous definition of "non-trivial". As of the spec recommendation, the information is generally added as comments in the files themselves, except for - NEWS, README and similar top-level standard files, so that a SPDX code isn't the first thing people encounter - files that don't support comments (json) or where they'd be a bit awkward (.desktop, .service) - anything under po/, to not interfere with translation teams Those are covered by a .reuse/dep5 files, except for image assets, where separate .license files are used (It would be possible to add comments to SVG files, but I don't trust image editors to preserve them). [0] https://reuse.software/ Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/224>
59 lines
1.6 KiB
JavaScript
Executable File
59 lines
1.6 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// SPDX-FileCopyrightText: 2023 Florian Müllner <fmuellner@gnome.org>
|
|
//
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
const {ESLint} = require('eslint');
|
|
|
|
console.log(`Running ESLint version ${ESLint.version}...`);
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
function hasOption(...names) {
|
|
return process.argv.some(arg => names.includes(arg));
|
|
}
|
|
|
|
function getOption(...names) {
|
|
const optIndex =
|
|
process.argv.findIndex(arg => names.includes(arg)) + 1;
|
|
|
|
if (optIndex === 0)
|
|
return undefined;
|
|
|
|
return process.argv[optIndex];
|
|
}
|
|
|
|
(async function main() {
|
|
const outputOption = getOption('--output-file', '-o');
|
|
const outputPath = outputOption ? path.resolve(outputOption) : null;
|
|
|
|
const sourceDir = path.dirname(process.argv[1]);
|
|
process.chdir(path.resolve(sourceDir, '..'));
|
|
|
|
const sources = ['extensions'];
|
|
const eslint = new ESLint();
|
|
|
|
const results = await eslint.lintFiles(sources);
|
|
const formatter = await eslint.loadFormatter(getOption('--format', '-f'));
|
|
const resultText = formatter.format(results);
|
|
|
|
if (outputPath) {
|
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true});
|
|
fs.writeFileSync(outputPath, resultText);
|
|
|
|
if (hasOption('--stdout')) {
|
|
const consoleFormatter = await eslint.loadFormatter();
|
|
console.log(consoleFormatter.format(results));
|
|
}
|
|
} else {
|
|
console.log(resultText);
|
|
}
|
|
|
|
process.exitCode = results.some(r => r.errorCount > 0) ? 1 : 0;
|
|
})().catch((error) => {
|
|
process.exitCode = 1;
|
|
console.error(error);
|
|
});
|