Files @ 2a57d3660003
Branch filter:

Location: kallithea/.eslintrc.js

mads
git: show warning when removing existing unused Kallithea hook

These hooks are no longer used and should be removed, but it is nice to have
explicit logging when it happens.
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": {
    }
};