https://github.com/CTFd/CTFd
Raw File
Tip revision: 955b7f0bf14e1f4a7923f00f60c5d991b1387b3f authored by miyoyo on 02 April 2024, 00:43:13 UTC
Allow plugins to add an entry in the config page (#2509)
Tip revision: 955b7f0
.eslintrc.js
module.exports = {
    "env": {
        "browser": true,
        "es6": true
    },
    "extends": "eslint:recommended",
    "globals": {
        "Atomics": "readonly",
        "SharedArrayBuffer": "readonly"
    },
    "parserOptions": {
        "ecmaVersion": 2018,
        "sourceType": "module"
    },
    "rules": {
        "no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
    }
};
back to top