view .eslintrc.js @ 8279:fb70be1e6729

cli: fix '--full' option of index-create The option '-f' or '--full' is actually a flag, but the current declaration made click expect a value as argument. Instead, follow the click convention to allow --full and --no-full, to indicate it is a boolean flag, as we do in other places.
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Sun, 01 Mar 2020 20:51:03 +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": {
    }
};