Files @ 03d51a2a395d
Branch filter:

Location: kallithea/.eslintrc.js

mads
repo group: always update fullpath group_name when changing parent

It was usually set anyway before, as the group name usually was specified
without being changed and triggered this update.
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": {
    }
};