mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
0371a7dc4c
* novnc wip. * remove blacklistKeys. * eslint ignore all js files. * ad common keyboard interface. * upgrade novnc. * fix novnc. * fix novnc keyboard. * fix keyboard remapping. * conditionally include novnc at build time.
20 lines
439 B
Plaintext
20 lines
439 B
Plaintext
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": ["plugin:vue/essential", "@vue/prettier", "@vue/typescript"],
|
|
"parserOptions": {
|
|
"parser": "@typescript-eslint/parser"
|
|
},
|
|
"rules": {
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/valid-v-for": "off",
|
|
"no-case-declarations": "off",
|
|
"no-dupe-class-members": "off",
|
|
"no-console": "off",
|
|
"no-empty": "off"
|
|
},
|
|
"ignorePatterns": ["**/*.js"]
|
|
}
|