Skip to content
← Back to rules

unicorn/require-array-join-separator Style

🛠️ An auto-fix is available for this rule for some violations.

What it does

Enforce using the separator argument with Array#join().

Why is this bad?

It's better to make it clear what the separator is when calling Array#join(), instead of relying on the default comma (',') separator.

Examples

Examples of incorrect code for this rule:

javascript
foo.join();

Examples of correct code for this rule:

javascript
foo.join(",");

How to use

To enable this rule using the config file or in the CLI, you can use:

json
{
  "rules": {
    "unicorn/require-array-join-separator": "error"
  }
}
ts
import { defineConfig } from "oxlint";

export default defineConfig({
  rules: {
    "unicorn/require-array-join-separator": "error",
  },
});
bash
oxlint --deny unicorn/require-array-join-separator

Version

This rule was added in v0.0.19.

References