forked from leo60228/unofficial-homestuck-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
35 lines (35 loc) · 834 Bytes
/
.eslintrc.yml
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
env:
browser: true
es2021: true
extends:
- 'plugin:vue/essential'
- standard
parserOptions:
ecmaVersion: 12
sourceType: module
plugins:
- vue
rules:
arrow-spacing: ["warn"]
block-spacing: ["off"]
camelcase: ["off"]
curly: ["off"]
dot-notation: ["warn"]
eqeqeq: ["warn", "smart"]
indent: ["off", 2, { "SwitchCase": 1 }]
no-callback-literal: ["off"]
no-cond-assign: ["warn"]
no-multi-spaces: ["off"]
no-tabs: ["off"]
no-trailing-space: ["off"]
no-trailing-spaces: ["off"]
no-var: ["off"]
object-curly-spacing: ["off"]
quote-props: ["off"]
quotes: ["off", "double", {"avoidEscape": true}]
semi: ["warn"]
space-before-blocks: ["off"]
space-before-function-paren: ["off"]
space-infix-ops: ["warn"]
yoda: ["off", "never", { "exceptRange": true }]
vue/require-component-is: ["off"]