oxc/crates
Cameron ee134f022c
fix(linter): incorrect reporting for jsx_key (#1020)
tested on a different repo and noticed an issue (despite passing all of
the eslint test cases)

If we are in the following scenario:

```tsx
    const columns: ColumnDef<User>[] = [
        {
            accessorKey: 'firstName',
            header: ({ column }) => <DataTableColumnHeader column={column} title="First Name" />,
            cell: ({ row }) => <div>{row.getValue('firstName')}</div>,
            enableSorting: true,
            enableHiding: false,
        },
        ]
```

Previously an error would be reported however it did not make sense to
as the object has to be mapped again before it is displayed in react
(hence lets check there instead)
2023-10-20 21:50:58 +08:00
..
oxc feat(playground): add transform and minify (#993) 2023-10-14 19:49:58 +08:00
oxc_allocator chore(clippy): enable undocumented_unsafe_blocks 2023-10-16 15:18:14 +08:00
oxc_ast feat(transformer): add utils to make logical_assignment_operators pass (#1017) 2023-10-20 16:27:23 +08:00
oxc_cli refactor(clippy): allow struct_excessive_bools 2023-10-16 15:18:07 +08:00
oxc_codegen feat(transformer): add utils to make logical_assignment_operators pass (#1017) 2023-10-20 16:27:23 +08:00
oxc_diagnostics Fix oxlint --quiet suppressing errors (#1008) 2023-10-18 11:00:27 +08:00
oxc_formatter chore: fix spelling 2023-10-16 15:33:47 +08:00
oxc_index ci: turn off doc tests because they are slow to compile and run (#961) 2023-10-07 17:01:23 +08:00
oxc_linter fix(linter): incorrect reporting for jsx_key (#1020) 2023-10-20 21:50:58 +08:00
oxc_linter_plugin feat(linter): eslint-plugin-unicorn(filename-case) (#978) 2023-10-11 15:23:17 +08:00
oxc_macros refactor(clippy): allow clippy::too_many_lines 2023-10-16 15:18:11 +08:00
oxc_minifier chore(minifier): add --whitespace option to example 2023-10-20 11:33:53 +08:00
oxc_napi perf: speed tasks run by using a global allocator 2023-10-11 20:30:30 +08:00
oxc_parser chore(clippy): enable undocumented_unsafe_blocks 2023-10-16 15:18:14 +08:00
oxc_query refactor(clippy): allow clippy::too_many_lines 2023-10-16 15:18:11 +08:00
oxc_resolver chore(deps): bump the dependencies group with 5 updates (#1002) 2023-10-16 15:23:20 +08:00
oxc_semantic feat(transformer): add utils to make logical_assignment_operators pass (#1017) 2023-10-20 16:27:23 +08:00
oxc_span ci: turn off doc tests because they are slow to compile and run (#961) 2023-10-07 17:01:23 +08:00
oxc_syntax feat(transformer_conformance): read plugins options from babel options.json (#1006) 2023-10-17 14:52:51 +08:00
oxc_transformer feat(transformer): add utils to make logical_assignment_operators pass (#1017) 2023-10-20 16:27:23 +08:00
oxc_type_synthesis ci: turn off doc tests because they are slow to compile and run (#961) 2023-10-07 17:01:23 +08:00
oxc_wasm refactor(transformer): add TransformerCtx struct for easier access to symbols and scopes 2023-10-19 16:19:27 +08:00