@gerhobbelt/mathjax-third-party-extensions
Version:
A list of MathJax extensions provided by third-party contributors
29 lines (28 loc) • 656 B
JavaScript
module.exports = {
"root": true,
"extends": "eslint:recommended",
"env": {
"es6": false,
"browser": true,
"node": true,
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script",
"impliedStrict": true,
},
"globals": {
"MathJax": true,
"ActiveXObject": true,
"cookie": true,
},
"rules": {
"quotes": ["off", "double", "avoid-escape"],
"indent": ["off", 2],
"no-console": "off",
"no-useless-escape": "off",
"no-empty": "off",
"no-unused-vars": "off",
"no-redeclare": "warn",
},
};