view .eslintrc.js @ 8343:a67bcc6f9118

db: drop SA caching_query and FromCache, and thus sql_cache_short beaker cache It is not a good idea to have dead ORM objects. If we want caching, we should do it explicit. It is unknown how much this cache helps, but we can profile and introduce better caching of simple data where relevant.
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 20 Oct 2019 22:06:26 +0200
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": {
    }
};