mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-01 02:41:42 +00:00
- Show 0 clients when NT server props are undefined - Add Prettier --------- Co-authored-by: Matthew Morley <matthew.morley.ca@gmail.com>
21 lines
571 B
JSON
21 lines
571 B
JSON
{
|
|
"root": true,
|
|
"extends": [
|
|
"plugin:vue/vue3-recommended",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-typescript",
|
|
"@vue/eslint-config-prettier/skip-formatting"
|
|
],
|
|
"rules": {
|
|
"quotes": ["error", "double"],
|
|
"comma-dangle": ["error", "never"],
|
|
"comma-spacing": ["error", { "before": false, "after": true }],
|
|
"semi": ["error", "always"],
|
|
"eol-last": "error",
|
|
"object-curly-spacing": ["error", "always"],
|
|
"quote-props": ["error", "as-needed"],
|
|
"no-case-declarations": "off",
|
|
"vue/require-default-prop": "off"
|
|
}
|
|
}
|