From 9aee14f644cbaf2a03630037f69205618cf76d4a Mon Sep 17 00:00:00 2001 From: benmelz Date: Sun, 30 Aug 2026 14:33:23 -0400 Subject: [PATCH 1/2] add filetypes to oxc tools --- config/default.yml | 48 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/config/default.yml b/config/default.yml index 36c797a6..be98ee0e 100644 --- a/config/default.yml +++ b/config/default.yml @@ -577,13 +577,59 @@ PreCommit: required_executable: 'oxfmt' flags: ['--check'] install_command: 'npm install -g oxfmt' - + include: + - '**/*.js' + - '**/*.jsx' + - '**/*.mjs' + - '**/*.cjs' + - '**/*.ts' + - '**/*.tsx' + - '**/*.mts' + - '**/*.cts' + - '**/*.json' + - '**/*.jsonc' + - '**/*.json5' + - '**/*.css' + - '**/*.scss' + - '**/*.less' + - '**/*.pcss' + - '**/*.postcss' + - '**/*.graphql' + - '**/*.gql' + - '**/*.graphqls' + - '**/*.toml' + - '**/*.yml' + - '**/*.yaml' + - '**/*.html' + - '**/*.htm' + - '**/*.xhtml' + - '**/*.vue' + - '**/*.svelte' + - '**/*.md' + - '**/*.markdown' + - '**/*.mdx' + - '**/*.hbs' + - '**/*.handlebars' + - '**/*.mjml' + OxLint: enabled: false description: 'Analyze with oxlint' required_executable: 'oxlint' flags: ['--format=unix'] install_command: 'npm install -g oxlint' + include: + - '**/*.js' + - '**/*.jsx' + - '**/*.mjs' + - '**/*.cjs' + - '**/*.ts' + - '**/*.tsx' + - '**/*.mts' + - '**/*.cts' + - '**/*.vue' + - '**/*.svelte' + - '**/*.astro' Pep257: # Deprecated – use Pydocstyle instead. enabled: false From 46a67bacbe7983001e1b44b2ebed21870075df7b Mon Sep 17 00:00:00 2001 From: benmelz Date: Sun, 30 Aug 2026 14:35:06 -0400 Subject: [PATCH 2/2] bad whitespace --- config/default.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.yml b/config/default.yml index be98ee0e..97571c45 100644 --- a/config/default.yml +++ b/config/default.yml @@ -611,7 +611,7 @@ PreCommit: - '**/*.hbs' - '**/*.handlebars' - '**/*.mjml' - + OxLint: enabled: false description: 'Analyze with oxlint'