You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.nls.json
+1-11Lines changed: 1 addition & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -8,15 +8,5 @@
8
8
"extension.commands.salesforce-mobile-offline.eslint.version": "Version of ESLint to include in devDependencies",
9
9
"salesforce.mobile.extensions": "Salesforce Mobile Extensions",
10
10
"extension.displayName": "Salesforce Mobile Extensions for Visual Studio Code",
11
-
"extension.description": "Tools to help developers create their Salesforce Mobile experiences in a VSCode development environment.",
12
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.lwc-folder-does-not-exist": "The \"force-app/main/default/lwc\" folder does not exist in your project. This folder is required to create a configuration file for ESLint.",
13
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.package-json-does-not-exist": "Your project does not contain a \"package.json\" specification. You must have a package specification to configure these ESLint packages and their dependencies in your project.",
14
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.add-linting-guidance": "Do you want to add Salesforce code linting guidance for Mobile and Offline capabilities? These tools will identify code patterns that cause problems in Mobile and Offline use cases.",
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.updated-package-json": "Updated package.json to include offline linting packages and dependencies.",
18
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.updated-eslintrc-json": "Updated .eslintrc.json to include recommended linting rules.",
19
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.run-install-command": "In the Terminal window, be sure to run the install command for your configured package manager, to install the updated dependencies. For example, \"npm install\" or \"yarn install\".",
20
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.already-configured": "All offline linting packages and dependencies are already configured in your project. No update has been made to package.json.",
21
-
"extension.commands.salesforcedx-vscode-offline-app.configure-linting-tools.general-error": "There was an error trying to update either the offline linting dependencies or linting configuration: {0}"
11
+
"extension.description": "Tools to help developers create their Salesforce Mobile experiences in a VSCode development environment."
'Your project does not contain a "package.json" specification. You must have a package specification to configure these ESLint packages and their dependencies in your project.';
100
104
101
105
awaitthis.showMessage(message);
102
106
telemetryService.sendException(event,message);
@@ -106,7 +110,7 @@ export class ConfigureLintingToolsCommand {
106
110
107
111
// Ask user to add eslint plugin
108
112
constresult=awaitthis.showMessage(
109
-
l10n.t(`${commandName}.add-linting-guidance`),
113
+
'Do you want to add Salesforce code lintingguidance for Mobile and Offline capabilities? These tools will identify code patterns that cause problems in Mobile and Offline use cases.',
110
114
MessageType.InformationYesNo
111
115
);
112
116
@@ -118,7 +122,7 @@ export class ConfigureLintingToolsCommand {
`Updated .eslintrc.json to include recommended linting rules.`,
154
166
MessageType.InformationOk
155
167
);
156
168
}
157
169
158
170
if(modifiedDevDependencies||modifiedEslintrc){
159
171
this.showMessage(
160
-
l10n.t(`${commandName}.run-install-command`),
172
+
`In the Terminal window, be sure to run the installcommand for your configured package manager, to install the updated dependencies. For example, "npm install" or "yarn install".`,
0 commit comments