view .eslintrc.js @ 8975:9fe161e3b5ce stable

api docstrings: drop "ERROR OUTPUT" from docstring It is not so valuable, and not included in the user doc.
author Mads Kiilerich <mads@kiilerich.com>
date Tue, 27 Dec 2022 20:25:59 +0100
parents 4d36432bf705
children
line wrap: on
line source

module.exports = {
    "env": {
        "browser": true,
        "es6": true,
        "jquery": true
    },
    "extends": "eslint:recommended",
    "globals": {
        "Atomics": "readonly",
        "SharedArrayBuffer": "readonly"
    },
    "parserOptions": {
        "ecmaVersion": 2018,
        "sourceType": "module"
    },
    "plugins": [
        "html"
    ],
    "rules": {
    }
};