]> git.proxmox.com Git - mirror_novnc.git/blame_incremental - .eslintrc
Avoid big strings on the stack
[mirror_novnc.git] / .eslintrc
... / ...
CommitLineData
1{
2 "env": {
3 "browser": true,
4 "es6": true
5 },
6 "parserOptions": {
7 "sourceType": "module"
8 },
9 "extends": "eslint:recommended",
10 "rules": {
11 "no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": true }],
12 "no-constant-condition": ["error", { "checkLoops": false }],
13 "no-var": "error"
14 }
15}