Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New rule: Normalize string keys #32

Open
1 task done
bmeck opened this issue Oct 4, 2024 · 3 comments
Open
1 task done

New rule: Normalize string keys #32

bmeck opened this issue Oct 4, 2024 · 3 comments

Comments

@bmeck
Copy link

bmeck commented Oct 4, 2024

Rule details

Normalize string keys

What type of rule is this?

Suggests an alternate way of doing something

Example code

Per https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize , there are examples of unicode that are similar in character. Generally this could mean that there is a key mismatch on 2 apparently similar strings. Suggesting using a normalized form to avoid this potential issue would be good so that the following 2 object don't have mismatched keys:

{
  "Amélie": 1
}
{
  "Amélie": 2
}

There are valid use cases for these key mismatches, but they are generally very specific in scope.

Participation

  • I am willing to submit a pull request to implement this rule.

Additional comments

Similar mismatches or deception such as using Bidi mixing / zero width characters etc. are potentially in the same vein but likely would be a different scope since those have associated CVEs.

@bmeck bmeck added the feature label Oct 4, 2024
@bmeck bmeck changed the title New Rule: (fill in) New rule: Normalize string keys Oct 4, 2024
@nzakas
Copy link
Member

nzakas commented Oct 4, 2024

Ah interesting. I agree this would be good to catch. I'm wondering if this should be part of no-duplicate-keys via an option or a completely separate rule. What do you think?

@bmeck
Copy link
Author

bmeck commented Oct 4, 2024

@nzakas I think duplicate keys via a config would be sane but the name of that role is a bit awkward since this occurs without having more than 1 key.

@nzakas
Copy link
Member

nzakas commented Oct 4, 2024

Fair point. A new rule it is! Maybe no-unnormalized-keys?

@nzakas nzakas added the accepted label Oct 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants