single-page-app-server
Version:
Single Page App SPA HTTP server.
35 lines (34 loc) • 733 B
Plain Text
{
"globals": {
"WebSocket": true,
"Blob": true,
"XMLHttpRequest": true
},
"env": {
"browser": false,
"node": true,
"es6": true
},
"rules": {
"quotes": [1, "single", {"avoidEscape": true, "allowTemplateLiterals": true}],
"indent": [1, 2],
"no-var": 2,
"no-undef": 2,
"no-unused-vars": [0, { "args": "all" }],
"no-const-assign": 2,
"prefer-const": 2,
"no-console": [2, { "allow": ["log", "error", "info"] }],
"no-extra-boolean-cast": 0,
"no-trailing-spaces": 2,
"strict": [1, "never"],
"semi": [2, "always"],
"no-extra-semi": 2,
"no-template-curly-in-string": 2
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"plugins": [
]
}