Files @ 5e1fb3de9cd9
Branch filter:

Location: kallithea/.eslintrc.js

mads
i18n: fr: consistently use 'NO-BREAK SPACE' before double punctuation instead of space

Pretty much like https://docs.weblate.org/en/latest/user/checks.html#punctuation-spacing .
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": {
    }
};