product icon

Valid JS Identifier

Message Lint Rule

Deprecated Item

Lint rules are going to be replaced by lix validation rules. Please upvote https://github.com/opral/lix-sdk/issues/239

What does this rule do?

Enforces that all message ids are valid JavaScript identifiers. It also excludes any reserved JS keywords. You can read more about valid JS identifiers here.

Manual setup

Besides installing the lint rule through manage.inlang.com you could also configure it manually.

Settings

Type:

type MessageLintRuleLevel = "error" | "warning"

Example in the project.inlang/settings.json:

{
    // other configuration
    "messageLintRuleLevels": {
		"messageLintRule.inlang.validJsIdentifier": "error",
	}
}

The default level is warning