Files @ 77124bf9f31a
Branch filter:

Location: kallithea/.eslintrc.js

mads
diff: fix per file display of "Raw diff" and others

With py3, the matcher must be a list of byte strings.
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": {
    }
};