apps/mantine.dev/src/pages/oxc-config-mantine.mdx
import { Layout } from '@/layout'; import { MDX_DATA } from '@/mdx';
export default Layout(MDX_DATA.OxcConfig);
oxc-config-mantine is a set of oxc configurations for oxlint (linter) and oxfmt (formatter) used in Mantine projects. You can use it in your project to ensure that your code follows the same style and conventions as Mantine.
Install oxc-config-mantine together with oxlint and oxfmt:
Create an oxlint.config.ts file in the root of your project and extend
the shared configuration:
import { defineConfig } from 'oxlint';
import { oxlint } from 'oxc-config-mantine';
export default defineConfig({
extends: [oxlint],
ignorePatterns: ['**/*.{mjs,cjs,js,d.ts,d.mts}'],
});
Create an oxfmt.config.ts file in the root of your project:
import { defineConfig } from 'oxfmt';
import { oxfmt } from 'oxc-config-mantine';
export default defineConfig(oxfmt);
You can customize the formatter by spreading the base configuration and adding project-specific settings, for example, to add extra ignore patterns:
import { defineConfig } from 'oxfmt';
import { oxfmt } from 'oxc-config-mantine';
export default defineConfig({
...oxfmt,
ignorePatterns: [...oxfmt.ignorePatterns, 'dist'],
});
Add scripts to your package.json to lint and format the code:
{
"scripts": {
"lint": "oxlint",
"format": "oxfmt --write \"**/*.{ts,tsx,css}\""
}
}
Then run them with your package manager:
npm run lint
npm run format
Mantine oxlint config extends recommended oxlint
rules and adds custom rules and configurations for the react, typescript,
jsx-a11y and jest plugins. You can find the full list of rules and source code
in the oxc-config-mantine repository.