Files @ 5f8f52a2f4b4
Branch filter:

Location: kallithea/.eslintrc.js - annotation

mads
tests: introduce test_api_update_repo_group covering update_repo_group api

This shows that some of the API is broken. Failing test cases are disabled and
will be enabled when the problems are fixed.
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": {
    }
};