Customizing Your Super-Linter and ESLint JavaScript Rules

…minutes to run in my case, and then returns a green as a valid pass: For more rules, check out the .eslintrc.json file on the ESLint GitHub repo at https://github.com/standard/eslint-config-standard/blob/master/eslintrc.json….

About

…1996: Completed my Bachelor of Technology degree majoring in Information and Communication Systems 1997: Built my first social website described by LookSmart as “impressive” 1998: Built a packaged eCommerce shopping…

Hiding Form Header and Footer Through JavaScript in Dynamics 365 Power Apps

…3 parts, header command bar, header body, and header tab navigator: Let’s hide and show each one using JavaScript. Header Command Bar Hide: formContext.ui.headerSection.setCommandBarVisible(false); Show: formContext.ui.headerSection.setCommandBarVisible(true); Header Body Hide: formContext.ui.headerSection.setBodyVisible(false);…

Using Kudu API and PowerShell to Deploy Azure App Services

…with the URL we are adding api/zip/site/wwwroot/. The site/wwwroot is the location of what we will download: $username = “`$MyAppService-DEV” $password = “wa4ttpa5fl6lfnpc” $base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes((“{0}:{1}” -f $username, $password))) $userAgent…

Wrong User When Pushing To GitHub from Visual Studio Code

…thinks I am a different user, in this case, carldesouza – “e: Permission to carldesouzacom/my-linter-test.git denied to carldesouza. fatal: unable to access ‘https://github.com/carldesouzacom/my-linter-test/’: The requested URL returned error: 403”: In…