Loading...

Power Apps ESLint plugin replaces Solution Checker for TypeScript code

Power Apps ESLint plugin replaces Solution Checker for TypeScript code

The Power Apps team have had a long-standing quality tool called the Solution Checker. This was built into the Dataverse solution management interface, ALM Power Platform Build Tools and even a PowerShell version. The challenge with the Solution Checker has always been that by the time you find out about the issues, it's often too late and the solution has been committed to source control and is already in the CI/CD pipeline, and furthermore the results were often false positives due to the way that TypeScript 'transpiles' into JavaScript.

Now the Power Apps team have released an ESLint plugin that gives you warnings and errors as you write your code (if you have the eslint extension installed), or when you run ESLint at the command line.

I've previously written on using ESLint in your development environment - and this is a really welcome addition to the rule set. 

At this time, the rule-set is most applicable for Web Resource development at the moment with the majority describing deprecations, however, it is certainly worth adding them to PCF projects as well (alongside the other react recommended rules).

To install you use:

npm install @microsoft/eslint-plugin-power-apps --save-dev

To add to your existing .eslint.json file, add @microsoft/power-apps to the plugins section:

"plugins": [
    ...
    "@microsoft/power-apps"
],

Then add each of the rules to the rules section with the level you want to enforce: 

"rules": {
  "@microsoft/power-apps/avoid-2011-api": "error",
  "@microsoft/power-apps/avoid-browser-specific-api": "error",
  "@microsoft/power-apps/avoid-crm2011-service-odata": "warn",
  "@microsoft/power-apps/avoid-crm2011-service-soap": "warn",
  "@microsoft/power-apps/avoid-dom-form-event": "warn",
  "@microsoft/power-apps/avoid-dom-form": "warn",
  "@microsoft/power-apps/avoid-isactivitytype": "warn",
  "@microsoft/power-apps/avoid-modals": "warn",
  "@microsoft/power-apps/avoid-unpub-api": "warn",
  "@microsoft/power-apps/avoid-window-top": "warn",
  "@microsoft/power-apps/do-not-make-parent-assumption": "warn",
  "@microsoft/power-apps/use-async": "error",
  "@microsoft/power-apps/use-cached-webresource": "warn",
  "@microsoft/power-apps/use-client-context": "warn",
  "@microsoft/power-apps/use-global-context": "error",
  "@microsoft/power-apps/use-grid-api": "warn",
  "@microsoft/power-apps/use-navigation-api": "warn",
  "@microsoft/power-apps/use-offline": "warn",
  "@microsoft/power-apps/use-org-setting": "error",
  "@microsoft/power-apps/use-relative-uri": "warn",
  "@microsoft/power-apps/use-utility-dialogs": "warn"
}

I would really like to see a recommended set of rules that can be used like other ESLint rule sets, so when more rules are added we don't need to explicitly add them to the config. If you agree - please consider upvoting my suggestions!

My .esconfig looks something like the following for a Web Resource project:

{
  "parser": "@typescript-eslint/parser",
  "env": {
    "browser": true,
    "commonjs": true,
    "es6": true,
    "jest": true,
    "jasmine": true
  },
  "extends": [
    "plugin:@typescript-eslint/recommended",
    "plugin:prettier/recommended",
    "prettier",
    "plugin:sonarjs/recommended"
  ],
  "parserOptions": {
    "project": "./tsconfig.json"
  },
  "plugins": [
    "@typescript-eslint",
    "prettier",
    "@microsoft/power-apps",
    "sonarjs"
  ],
  "ignorePatterns": [
    "**/generated/*.ts"
  ],
  "rules": {
    "prettier/prettier": "error",
    "eqeqeq": [
      2,
      "smart"
    ],
    "prettier/prettier": "error",
    "arrow-body-style": "off",
    "prefer-arrow-callback": "off",
    "linebreak-style": [
      "error",
      "windows"
    ],
    "quotes": [
      "error",
      "double"
    ],
    "semi": [
      "error",
      "always"
    ],
    "@microsoft/power-apps/avoid-2011-api": "error",
    "@microsoft/power-apps/avoid-browser-specific-api": "error",
    "@microsoft/power-apps/avoid-crm2011-service-odata": "warn",
    "@microsoft/power-apps/avoid-crm2011-service-soap": "warn",
    "@microsoft/power-apps/avoid-dom-form-event": "warn",
    "@microsoft/power-apps/avoid-dom-form": "warn",
    "@microsoft/power-apps/avoid-isactivitytype": "warn",
    "@microsoft/power-apps/avoid-modals": "warn",
    "@microsoft/power-apps/avoid-unpub-api": "warn",
    "@microsoft/power-apps/avoid-window-top": "warn",
    "@microsoft/power-apps/do-not-make-parent-assumption": "warn",
    "@microsoft/power-apps/use-async": "error",
    "@microsoft/power-apps/use-cached-webresource": "warn",
    "@microsoft/power-apps/use-client-context": "warn",
    "@microsoft/power-apps/use-global-context": "error",
    "@microsoft/power-apps/use-grid-api": "warn",
    "@microsoft/power-apps/use-navigation-api": "warn",
    "@microsoft/power-apps/use-offline": "warn",
    "@microsoft/power-apps/use-org-setting": "error",
    "@microsoft/power-apps/use-relative-uri": "warn",
    "@microsoft/power-apps/use-utility-dialogs": "warn"
  }
}

 

Note: This uses the prettier and sonarjs plugins that you will also need to install.

I also add the following scripts to my package.json:

"lint": "eslint **/*.ts",
"lint:fix": "npm run lint -- --fix",

These then allow you to run the rules across the entire project and automatically fix them where possible using npm run lint:fix.

I really love how the solution package has evolved into this set of pro-coder-friendly ESLint rules. I can't wait to see how it develops with more rules over time.

Read more on the official blog post from Microsoft.

Take a look at the npm package information for eslint-plugin-power-apps.

Published on:

Learn more
Develop 1 - Dynamics 365 Architecture Services
Develop 1 - Dynamics 365 Architecture Services

Share post:

Related posts

How To Create Copilot Custom UI Widgets In Power Apps

You can use Copilot to show custom UI widgets built-in Power Apps. UI widgets replace ... The post How To Create Copilot Custom UI Widgets In ...

14 hours ago

Power Apps Fundamentals + Microsoft Fabric Integration Series # 1: Introduction to Power Apps and Microsoft Fabric: Building a Unified Business Application Platform

Introduction Modern organizations generate enormous amounts of operational and analytical data every day. Business users need applications to ...

22 hours ago

Power Apps- Enhance row summaries in model-driven apps

We are announcing the ability to enhance row summaries in model-driven apps in Power Apps. This feature will reach general availability on Jun...

3 days ago

Calling Dataverse Actions and Functions from Power Apps Code Apps

When building Power Apps code apps, one of the most powerful things you can do is reach directly into Dataverse to trigger business logic. Whe...

3 days ago

Respond to a Power Automate Flow Approval in a Power Apps Custom Page or Canvas App

How to respond to Power Automate approval requests directly within a Power Apps custom page or canvas app, rather than email buttons or in Mi...

5 days ago

Inside Built-In and Custom Copilot UI Widgets powered by Power Apps

Custom app-powered Widgets feels like one of those shifts that will change how we think about Copilot experiences. Until recently, a lot of th...

6 days ago

Video: Transform Copilot With Custom UI Widgets Built In Power Apps

What you’re looking at here in Copilot is an interactive widget that I built with ... The post Video: Transform Copilot With Custom UI Widgets...

7 days ago

How to Automate Project Assignment in Dynamics 365 Using Power Automate and Power Apps Code Apps

This blog demonstrates how to automate project assignments in Microsoft Dynamics 365 using Microsoft Power Automate and Power Apps Code Apps, ...

9 days ago

Microsoft Power Automate – Build better forms with integrated Power Apps

We are announcing the ability to build better forms with integrated Power Apps in Power Automate. This feature will reach public preview on Ma...

17 days ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy