add linter for checking license headers (and eslint --fix target to match, and fix missing license headers while we're here) (#62)

This commit is contained in:
Tyler
2025-04-20 17:16:25 -07:00
committed by GitHub
parent 305ed41b88
commit d55168f51f
8 changed files with 72 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export const Colors = {
Background: '#1E1E2E',
Foreground: 'white',

View File

@@ -1,3 +1,9 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { useState, useEffect } from 'react';
import { useStdin } from 'ink';