Unverified Commit d03beb94 authored by Ilya Biryukov's avatar Ilya Biryukov Committed by GitHub
Browse files

[clang-format] Do not break on JS fields like on goto labels (#76233)

This regressions was introduced in
70d7ea0c.
The commit moved some code and correctly picked up an explicit check for
not running on Verilog.
However, the moved code also never ran for JavaScript and after the
commit we run it there and
this causes the wrong formatting of:

```js
export type Params = Config&{
  columns: Column[];
};
```
into
```js
export type Params = Config&{
columns:
  Column[];
};
```
parent 48b91066
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment