We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b0b0d commit 2f7111eCopy full SHA for 2f7111e
scripts/run.mjs
@@ -2,14 +2,12 @@
2
3
import { execSync } from 'node:child_process';
4
import { Command } from 'commander';
5
-import packageJson from '../package.json' assert { type: 'json' };
6
7
const program = new Command();
8
9
program
10
- .name(packageJson.name)
11
- .description(packageJson.description)
12
- .version(packageJson.version);
+ .name('Ultracite')
+ .description('Strict, opinionated linting config for modern TypeScript apps.');
13
14
15
.command('lint')
0 commit comments