Files @ 9fe161e3b5ce
Branch filter:

Location: kallithea/.eslintrc.js

mads
api docstrings: drop "ERROR OUTPUT" from docstring

It is not so valuable, and not included in the user doc.
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": {
    }
};