-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathetc-eslint.yaml
61 lines (53 loc) · 1.97 KB
/
etc-eslint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
##
## Vingester ~ Ingest Web Contents as Video Streams
## Copyright (c) 2021-2022 Dr. Ralf S. Engelschall <[email protected]>
## Licensed under GPL 3.0 <https://spdx.org/licenses/GPL-3.0-only>
##
---
extends:
- eslint:recommended
- eslint-config-standard
parserOptions:
ecmaVersion: 11
sourceType: module
ecmaFeatures:
jsx: false
env:
browser: true
node: true
mocha: false
commonjs: true
worker: false
serviceworker: false
globals:
process: true
Vue: true
VueNextSelect: true
rules:
# modified rules
indent: [ "error", 4, { "SwitchCase": 1 } ]
linebreak-style: [ "error", "unix" ]
semi: [ "error", "never" ]
operator-linebreak: [ "error", "after", { "overrides": { "&&": "before", "||": "before", ":": "after" } } ]
brace-style: [ "error", "stroustrup", { "allowSingleLine": true } ]
quotes: [ "error", "double" ]
# disabled rules
no-multi-spaces: off
no-multiple-empty-lines: off
key-spacing: off
object-property-newline: off
curly: off
space-in-parens: off
array-bracket-spacing: off
require-atomic-updates: off
no-void: off
lines-between-class-members: off
quote-props: off
object-curly-newline: off
node/no-callback-literal: off
multiline-ternary: off
no-new: off
no-unneeded-ternary: off
n/no-callback-literal: off
n/handle-callback-err: off
new-cap: off