]> git.proxmox.com Git - mirror_novnc.git/blame - .eslintrc
Avoid big strings on the stack
[mirror_novnc.git] / .eslintrc
CommitLineData
8727f598
JD
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 }],
2b5f94fa
JD
12 "no-constant-condition": ["error", { "checkLoops": false }],
13 "no-var": "error"
8727f598
JD
14 }
15}