mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
- Introduced a new `.oxlintrc.json` file to configure Oxlint for code quality checks. - Updated `package.json` to include linting scripts (`lint` and `lint:fix`) for easier code maintenance. - Enhanced documentation in `README` files to guide users on running Oxlint checks and applying fixes.
13 lines
209 B
JSON
13 lines
209 B
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"ignorePatterns": [
|
|
"coverage/**",
|
|
"data/**",
|
|
"dist/**",
|
|
"docs/**",
|
|
"node_modules/**",
|
|
"out/**",
|
|
".tmp/**"
|
|
]
|
|
}
|