view .eslintrc.js @ 8907:e19ca5912d57 i18n

i18n: updated translation for Spanish Currently translated at 8.3% (90 of 1081 strings)
author Jaime Marquínez Ferrándiz <weblate@jregistros.fastmail.net>
date Wed, 10 Aug 2022 21:23: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": {
    }
};