view .eslintrc.js @ 8331:d5c7930e3d5a

db: consistently use base_path from config instead of repeatedly getting from the database Avoid using the inefficient Repository.base_path ... and avoid even more the misleading Repository.repo_path .
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 30 Mar 2020 16:44:10 +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": {
    }
};