Skip to content

Commit

Permalink
chore: rename linter config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Nov 22, 2024
1 parent 69d77d6 commit a6e9e2e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function validateConfig(config: Config): Promise<Config> {
logger.debug(LOG_SOURCE.CONFIG, 'Starting config validation');

const ajv = new Ajv();
const schema = loadSchema('cli-config');
const schema = loadSchema('linter-config');
const validate = ajv.compile(schema);

if (!validate(config)) {
Expand Down

0 comments on commit a6e9e2e

Please sign in to comment.