mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
## [0.14.0] - 2024-12-01 ### Features -32f860dlinter: Add support for ignorePatterns property within config file (#7092) (Nicholas Rayburn) -053bc08linter: Implement typescript/no-unused-expressions (#7498) (camc314) -60b28fclinter: Implement typescript/consistent-generic-constructors (#7497) (camc314) -bd0693blinter: Allow lint rules with the same name (#7496) (camc314) -2ac9f96linter: Typescript/no-inferrable-types (#7438) (camc314) -8d89fdclinter: Add eslint/prefer-spread (#7112) (tbashiyy) ### Bug Fixes -123b5b7linter: False positive in `typescript/consistent-type-definitions` (#7560) (dalaoshu) -cc078d6linter: Add missing error message prefix to `eslint/no-const-assign` (Boshen) -17c0dd8linter: Fix `jsx_no_script_url` doc failed to build (Boshen) ### Performance -6cc7a48linter: Use `OsString` for module cache hash (#7558) (Boshen) -6655345linter: Use `FxDashMap` for module cache (#7522) (overlookmotel) ### Documentation -a6b0100linter: Fix config example headings (#7562) (Boshen) ### Refactor -0f3f67alinter: Add capability of adding semantic data to module record (#7561) (Boshen) -8392177linter: Clean up the runtime after the module record change (#7557) (Boshen) -823353alinter: Clean up APIs for `ModuleRecord` (#7556) (Boshen) -f847d0flinter: Call `str::ends_with` with array not slice (#7526) (overlookmotel) -2077ff9linter: Remove `once_cell` (#7510) (Boshen) -169b8bflinter, syntax: Introduce type alias `FxDashMap` (#7520) (overlookmotel) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
31 lines
722 B
JSON
31 lines
722 B
JSON
{
|
|
"name": "oxlint",
|
|
"version": "0.14.0",
|
|
"description": "Linter for the JavaScript Oxidation Compiler",
|
|
"keywords": [],
|
|
"author": "Boshen and oxc contributors",
|
|
"license": "MIT",
|
|
"homepage": "https://oxc.rs",
|
|
"bugs": "https://github.com/oxc-project/oxc/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oxc-project/oxc",
|
|
"directory": "npm/oxlint"
|
|
},
|
|
"bin": {
|
|
"oxlint": "bin/oxlint",
|
|
"oxc_language_server": "bin/oxc_language_server"
|
|
},
|
|
"funding": {
|
|
"url": "https://github.com/sponsors/Boshen"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.*"
|
|
},
|
|
"files": [
|
|
"bin/oxlint",
|
|
"bin/oxc_language_server",
|
|
"configuration_schema.json",
|
|
"README.md"
|
|
]
|
|
}
|