
Security News
The AI Industry Is Betting on Open Weights
An open letter signed by 50 companies, from NVIDIA and Microsoft to Mistral and Hugging Face, urges Washington not to restrict open weight AI.
@mastermunj/oxc-config
Advanced tools
Shared Oxlint and Oxfmt configuration for TypeScript packages.
oxlint base config with type-aware linting (tsgolint)oxfmt base configextends / spreadnpm install --save-dev @mastermunj/oxc-config oxlint oxfmt oxlint-tsgolint
Create oxlint.config.ts in your project root:
import { defineConfig } from 'oxlint';
import baseConfig from '@mastermunj/oxc-config/oxlint';
export default defineConfig({
extends: [baseConfig],
});
Pass additional rules or overrides after extends:
import { defineConfig } from 'oxlint';
import baseConfig from '@mastermunj/oxc-config/oxlint';
export default defineConfig({
extends: [baseConfig],
rules: {
'no-console': 'error',
},
overrides: [
{
files: ['scripts/**/*.ts'],
rules: {
'no-console': 'off',
},
},
],
});
Create oxfmt.config.ts in your project root:
import { defineConfig } from 'oxfmt';
import baseConfig from '@mastermunj/oxc-config/oxfmt';
export default defineConfig({
...baseConfig,
});
Spread the base config and override only what you need:
import { defineConfig } from 'oxfmt';
import baseConfig from '@mastermunj/oxc-config/oxfmt';
export default defineConfig({
...baseConfig,
printWidth: 100,
});
Both tools auto-discover oxlint.config.ts and oxfmt.config.ts in the project root — no --config flag needed.
{
"scripts": {
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --check .",
"format:fix": "oxfmt --write ."
}
}
Type-aware linting is enabled automatically via
options.typeAware: truein the base config (powered by tsgolint). No--type-awareCLI flag needed.
@mastermunj/oxc-config/oxlint → oxlint.config.ts@mastermunj/oxc-config/oxfmt → oxfmt.config.tsMIT
FAQs
Shared oxlint + oxfmt configuration for TypeScript packages
The npm package @mastermunj/oxc-config receives a total of 391 weekly downloads. As such, @mastermunj/oxc-config popularity was classified as not popular.
We found that @mastermunj/oxc-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
An open letter signed by 50 companies, from NVIDIA and Microsoft to Mistral and Hugging Face, urges Washington not to restrict open weight AI.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.