Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushman Chhabra committed Jun 30, 2023
1 parent 3848a2e commit 491daa3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions src/bld/osxCfg.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import { log } from "../log.js";

/**
* @typedef {object} OsxRc OSX resource configuration options
* @property {string} LSApplicationCategoryType The category that best describes your app for the App Store.
* @property {string} CFBundleIdentifier A unique identifier for a bundle usually in reverse DNS format.
* @property {string} CFBundleName A user-visible short name for the bundle.
* @property {string} CFBundleDisplayName The user-visible name for the bundle.
* @property {string} CFBundleSpokenName A replacement for the app name in text-to-speech operations.
* @property {string} CFBundleVersion The version of the build that identifies an iteration of the bundle.
* @property {string} CFBundleShortVersionString The release or version number of the bundle.
* @property {string} NSHumanReadableCopyright A human-readable copyright notice for the bundle.
* @property {string} LSApplicationCategoryType The category that best describes your app for the App Store.
* @property {string} CFBundleIdentifier A unique identifier for a bundle usually in reverse DNS format.
* @property {string} CFBundleName A user-visible short name for the bundle.
* @property {string} CFBundleDisplayName The user-visible name for the bundle.
* @property {string} CFBundleSpokenName A replacement for the app name in text-to-speech operations.
* @property {string} CFBundleVersion The version of the build that identifies an iteration of the bundle.
* @property {string} CFBundleShortVersionString The release or version number of the bundle.
* @property {string} NSHumanReadableCopyright A human-readable copyright notice for the bundle.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions src/util/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { readdir } from "node:fs/promises";
/**
* Validate options
*
* @param {import("../../index.js").OPTIONS} options Options
* @param {object} releaseInfo Version specific NW release info
* @return {Promise<undefined>} Return undefined if options are valid
* @param {import("../index.js").Options} options Options
* @param {object} releaseInfo Version specific NW release info
* @return {Promise<undefined>} Return undefined if options are valid
* @throws {Error} Throw error if options are invalid
*/
export const validate = async (options, releaseInfo) => {
Expand Down

0 comments on commit 491daa3

Please sign in to comment.