mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-19 00:02:51 -07:00
309 lines
8.1 KiB
JavaScript
309 lines
8.1 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { execSync } from 'node:child_process';
|
|
|
|
const isWindows = process.platform === 'win32';
|
|
|
|
const LINTERS = {
|
|
actionlint: {
|
|
check: isWindows ? 'where npx node-actionlint 2>nul' : 'command -v npx node-actionlint',
|
|
installer: 'npm install --save-dev @tktco/node-actionlint',
|
|
run: `
|
|
npx node-actionlint \
|
|
-color \
|
|
-ignore 'SC2002:' \
|
|
-ignore 'SC2016:' \
|
|
-ignore 'SC2129:' \
|
|
-ignore 'label ".+" is unknown'
|
|
`,
|
|
},
|
|
shellcheck: {
|
|
check: isWindows ? 'where npx shellcheck 2>nul' : 'command -v npx shellcheck',
|
|
installer: 'npm install --save-dev shellcheck',
|
|
run: `
|
|
git ls-files | grep -E '^([^.]+|.*\\.(sh|zsh|bash))' | xargs file --mime-type \
|
|
| grep "text/x-shellscript" | awk '{ print substr($1, 1, length($1)-1) }' \
|
|
| xargs npx shellcheck \
|
|
--check-sourced \
|
|
--enable=all \
|
|
--exclude=SC2002,SC2129,SC2310 \
|
|
--severity=style \
|
|
--format=gcc \
|
|
--color=never | sed -e 's/note:/warning:/g' -e 's/style:/warning:/g'
|
|
`,
|
|
},
|
|
yamllint: {
|
|
check: isWindows ? 'where npx yaml-lint 2>nul' : 'command -v npx yaml-lint',
|
|
installer: 'npm install --save-dev yaml-lint',
|
|
run: isWindows
|
|
? `powershell -Command "Get-ChildItem -Recurse -Include *.yaml,*.yml | ForEach-Object { npx yaml-lint $_.FullName }"`
|
|
: "git ls-files | grep -E '\\.(yaml|yml)' | xargs npx yaml-lint",
|
|
},
|
|
};
|
|
|
|
function runCommand(command, stdio = 'inherit') {
|
|
try {
|
|
execSync(command, { stdio, env: process.env, shell: true });
|
|
return true;
|
|
} catch (_e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export function setupLinters() {
|
|
console.log('Setting up linters...');
|
|
|
|
for (const linter in LINTERS) {
|
|
const { check, installer } = LINTERS[linter];
|
|
if (!runCommand(check, 'ignore')) {
|
|
console.log(`Installing ${linter}...`);
|
|
if (!runCommand(installer)) {
|
|
console.error(
|
|
`Failed to install ${linter}. Please install it manually.`,
|
|
);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
}
|
|
console.log('All required linters are available.');
|
|
}
|
|
|
|
export function runESLint() {
|
|
console.log('\nRunning ESLint...');
|
|
if (!runCommand('npm run lint')) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export function runActionlint() {
|
|
console.log('\nRunning actionlint...');
|
|
if (!runCommand(LINTERS.actionlint.run)) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export function runShellcheck() {
|
|
console.log('\nRunning shellcheck...');
|
|
if (!runCommand(LINTERS.shellcheck.run)) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export function runYamllint() {
|
|
console.log('\nRunning yamllint...');
|
|
if (!runCommand(LINTERS.yamllint.run)) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export function runPrettier() {
|
|
console.log('\nRunning Prettier...');
|
|
if (!runCommand('prettier --check .')) {
|
|
console.log(
|
|
'Prettier check failed. Please run "npm run format" to fix formatting issues.',
|
|
);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
export function runSensitiveKeywordLinter() {
|
|
console.log('\nRunning sensitive keyword linter...');
|
|
const SENSITIVE_PATTERN = /gemini-\d+(\.\d+)?/g;
|
|
const ALLOWED_KEYWORDS = new Set([
|
|
'gemini-3.1',
|
|
'gemini-3',
|
|
'gemini-3.0',
|
|
'gemini-2.5',
|
|
'gemini-2.0',
|
|
'gemini-1.5',
|
|
'gemini-1.0',
|
|
]);
|
|
|
|
function getChangedFiles() {
|
|
const baseRef = process.env.GITHUB_BASE_REF || 'main';
|
|
try {
|
|
execSync(`git fetch origin ${baseRef}`);
|
|
const mergeBase = execSync(`git merge-base HEAD origin/${baseRef}`)
|
|
.toString()
|
|
.trim();
|
|
return execSync(`git diff --name-only ${mergeBase}..HEAD`)
|
|
.toString()
|
|
.trim()
|
|
.split('\n')
|
|
.filter(Boolean);
|
|
} catch (_error) {
|
|
console.error(`Could not get changed files against origin/${baseRef}.`);
|
|
try {
|
|
console.log('Falling back to diff against HEAD~1');
|
|
return execSync(`git diff --name-only HEAD~1..HEAD`)
|
|
.toString()
|
|
.trim()
|
|
.split('\n')
|
|
.filter(Boolean);
|
|
} catch (_fallbackError) {
|
|
console.error('Could not get changed files against HEAD~1 either.');
|
|
process.exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
const changedFiles = getChangedFiles();
|
|
let violationsFound = false;
|
|
|
|
for (const file of changedFiles) {
|
|
if (!existsSync(file) || lstatSync(file).isDirectory()) {
|
|
continue;
|
|
}
|
|
const content = readFileSync(file, 'utf-8');
|
|
const lines = content.split('\n');
|
|
let match;
|
|
while ((match = SENSITIVE_PATTERN.exec(content)) !== null) {
|
|
const keyword = match[0];
|
|
if (!ALLOWED_KEYWORDS.has(keyword)) {
|
|
violationsFound = true;
|
|
const matchIndex = match.index;
|
|
let lineNum = 0;
|
|
let charCount = 0;
|
|
for (let i = 0; i < lines.length; i++) {
|
|
const line = lines[i];
|
|
if (charCount + line.length + 1 > matchIndex) {
|
|
lineNum = i + 1;
|
|
const colNum = matchIndex - charCount + 1;
|
|
console.log(
|
|
`::warning file=${file},line=${lineNum},col=${colNum}::Found sensitive keyword "${keyword}". Please make sure this change is appropriate to submit.`,
|
|
);
|
|
break;
|
|
}
|
|
charCount += line.length + 1; // +1 for the newline
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!violationsFound) {
|
|
console.log('No sensitive keyword violations found.');
|
|
}
|
|
}
|
|
|
|
function stripJSONComments(json) {
|
|
return json.replace(
|
|
/\\"|"(?:\\"|[^"])*"|(\/\/.*|\/\*[\s\S]*?\*\/)/g,
|
|
(m, g) => (g ? '' : m),
|
|
);
|
|
}
|
|
|
|
export function runTSConfigLinter() {
|
|
console.log('\nRunning tsconfig linter...');
|
|
|
|
let files = [];
|
|
try {
|
|
// Find all tsconfig.json files under packages/ using a git pathspec
|
|
files = execSync("git ls-files 'packages/**/tsconfig.json'")
|
|
.toString()
|
|
.trim()
|
|
.split('\n')
|
|
.filter(Boolean);
|
|
} catch (e) {
|
|
console.error('Error finding tsconfig.json files:', e.message);
|
|
process.exit(1);
|
|
}
|
|
|
|
let hasError = false;
|
|
|
|
for (const file of files) {
|
|
const tsconfigPath = join(process.cwd(), file);
|
|
if (!existsSync(tsconfigPath)) {
|
|
console.error(`Error: ${tsconfigPath} does not exist.`);
|
|
hasError = true;
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
const content = readFileSync(tsconfigPath, 'utf-8');
|
|
const config = JSON.parse(stripJSONComments(content));
|
|
|
|
// Check if exclude exists and matches exactly
|
|
if (config.exclude) {
|
|
if (!Array.isArray(config.exclude)) {
|
|
console.error(
|
|
`Error: ${file} "exclude" must be an array. Found: ${JSON.stringify(
|
|
config.exclude,
|
|
)}`,
|
|
);
|
|
hasError = true;
|
|
} else {
|
|
const allowedExclude = new Set(['node_modules', 'dist']);
|
|
const invalidExcludes = config.exclude.filter(
|
|
(item) => !allowedExclude.has(item),
|
|
);
|
|
|
|
if (invalidExcludes.length > 0) {
|
|
console.error(
|
|
`Error: ${file} "exclude" contains invalid items: ${JSON.stringify(
|
|
invalidExcludes,
|
|
)}. Only "node_modules" and "dist" are allowed.`,
|
|
);
|
|
hasError = true;
|
|
}
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error(`Error parsing ${tsconfigPath}: ${error.message}`);
|
|
hasError = true;
|
|
}
|
|
}
|
|
|
|
if (hasError) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const args = process.argv.slice(2);
|
|
|
|
if (args.includes('--setup')) {
|
|
setupLinters();
|
|
}
|
|
if (args.includes('--eslint')) {
|
|
runESLint();
|
|
}
|
|
if (args.includes('--actionlint')) {
|
|
runActionlint();
|
|
}
|
|
if (args.includes('--shellcheck')) {
|
|
runShellcheck();
|
|
}
|
|
if (args.includes('--yamllint')) {
|
|
runYamllint();
|
|
}
|
|
if (args.includes('--prettier')) {
|
|
runPrettier();
|
|
}
|
|
if (args.includes('--sensitive-keywords')) {
|
|
runSensitiveKeywordLinter();
|
|
}
|
|
if (args.includes('--tsconfig')) {
|
|
runTSConfigLinter();
|
|
}
|
|
|
|
if (args.length === 0) {
|
|
setupLinters();
|
|
runESLint();
|
|
runActionlint();
|
|
runShellcheck();
|
|
runYamllint();
|
|
runPrettier();
|
|
runSensitiveKeywordLinter();
|
|
runTSConfigLinter();
|
|
console.log('\nAll linting checks passed!');
|
|
}
|
|
}
|
|
|
|
main();
|