view .eslintrc.js @ 8308:96b43734025f

scripts: use plain import of contributor_data Relative import failed with: Traceback (most recent call last): File "scripts/update-copyrights.py", line 45, in <module> from . import contributor_data ImportError: attempted relative import with no known parent package Fixed by backing out changeset 2786730e56e0. The pytype problem can be solved differently.
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 28 Mar 2020 22:41:12 +0100
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": {
    }
};