JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 33781
  • Score
    100M100P100Q149151F
  • License ISC

Validates XSS related issues of mixing HTML and non-HTML content in variables.

Package Exports

  • eslint-plugin-xss

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-xss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

eslint-plugin-mfiles

Validates M-Files coding conventions

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-mfiles:

$ npm install eslint-plugin-mfiles --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-mfiles globally.

Usage

Add mfiles to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "mfiles"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "mfiles/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here