@brainylab/eslint-config-mdx
v3.1.5
Published
ESLint mdx config
Maintainers
Readme
BrainyLab eslint-config-mdx
this is the mdx configuration of ESLint is used in the Projects made by BrainyLab Development.
Install Config
# npm
npm i --save-dev eslint prettier @brainylab/eslint-config-mdx
#yarn
yarn add -D eslint prettier @brainylab/eslint-config-mdx
#pnpm
pnpm add -D eslint prettier @brainylab/eslint-config-mdxUsage Flat Config - ESlint 9+
Require Node.js >= 18.18, and ESLint >= 8.56.0. create file eslint.config.js or EMS eslint.config.mjs in main project folder, add the lines below in the file.
import { reactConfig } from '@brainylab/eslint-config-react';
import { mdxConfig } from '@brainylab/eslint-config-mdx';
export default [
...reactConfig // or nextConfig,
...mdxConfig
]Config Prettier
This library focuses on linter and prettier was separated for better performance, to use prettier together with ESlint, following this documentation BrainyLab Prettier Config
Config VS Code to auto fix
Install ESlint Plugin on VSCode:
create ou alter .vscode/settings.json.
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
// eslint >= 8.56.0 and < 9 add line on VSCode
"eslint.experimental.useFlatConfig": true
}License
MIT
