Skip to content

Latest commit

History

History
161 lines (122 loc) 路 4.79 KB

README.md

File metadata and controls

161 lines (122 loc) 路 4.79 KB

Require manifest to specify the web site/app name (manifest-app-name)

manifest-app-name checks if the name of the web application is specified within the manifest file.

Why is this important?

Browsers that support the web app manifest file will use the value of the name property (or short_name's value, when there is insufficient space) to display the name of the app in various places across the OS such as the list of apps installed, an app icon label etc.

If these properties are not defined, browsers will try to get the name from other sources such as the value of the application-name meta tag, <title>, or default to a specific value (e.g.: Untitled). This can lead to a bad user experience, as the app name may be truncated or wrong.

So, to reduce the risk of having the app name truncated, it's recommended to define the name property and keep its value under 30 characters, and if it鈥檚 over 12 characters, include a short_name property that is at most 12 characters.

Notes:

  • If the name property value is under or 12 characters, there is no need to provide the short_name property as browsers can use the value of name.

  • The 12-character limit is used to ensure that for most cases the value won鈥檛 be truncated. However, depending on other things, such as:

    • what font the user is using
    • what characters the web site/app name includes (e.g. i occupies less space than W)

    the text may still be truncated even if it鈥檚 under 12 characters.

  • The above recommended limits are set to be consistent with the native OSes and/or store limits/recommendations, e.g.:

What does the hint check?

The hint checks if a non-empty name member was specified and its value is under 30 characters.

If the name member is over 12 characters, or short_name is specified, the hint will also check if short_name has a non-empty value that is under 12 characters.

Examples that trigger the hint

Manifest is specified without name and short_name:

{
    ...
}

Manifest is specified with a name longer than 12 characters and no short_name:

{
    "name": "Baldwin Museum of Science",
    ...
}

Manifest is specified with a name longer than 30 characters:

{
    "name": "Baldwin Museum of Science - visit today!",
    "short_name": "Baldwin"
    ...
}

Manifest is specified with short_name longer than 12 characters:

{
    "name": "Baldwin Museum of Science",
    "short_name": "Baldwin Museum"
    ...
}

Examples that pass the hint

Manifest is specified with a name shorter than 30 characters and a short_name shorter than 12 characters:

{
    "name": "Baldwin Museum of Science",
    "short_name": "Baldwin"
    ...
}

Note: Not specifying a manifest file or having an invalid one are covered by other hints, so those cases won鈥檛 make this hint fail.

How to use this hint?

To use it you will have to install it via npm:

npm install @hint/hint-manifest-app-name

Note: You can make npm install it as a devDependency using the --save-dev parameter, or to install it globally, you can use the -g parameter. For other options see npm's documentation.

And then activate it via the .hintrc configuration file:

{
    "connector": {...},
    "formatters": [...],
    "hints": {
        "manifest-app-name": "error",
        ...
    },
    "parsers": [...],
    ...
}

Further Reading