view .eslintrc.js @ 8448:0c4f5f2038be i18n

i18n: updated translation for Norwegian Bokmål Currently translated at 34.5% (376 of 1087 strings)
author Allan Nordhøy <epost@anotheragency.no>
date Mon, 10 Aug 2020 10:45:11 +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": {
    }
};