forked from Kumar-Saksham/CSMM-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxo.yaml
49 lines (38 loc) · 805 Bytes
/
xo.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
---
# yaml-language-server: $schema=https://json.schemastore.org/eslintrc
ignorePatterns: ['**/*.d.ts']
rules:
'brace-style':
- error
- allman
'quotes':
- error
- single
- avoidEscape: true
unicorn/prefer-query-selector: 'off'
unicorn/no-array-for-each: 'off'
overrides:
- files:
- '**/*.ts'
- '**/*.mts'
- '**/*.cts'
- '**/*.tsx'
env:
es2022: true
rules:
'brace-style': 'off'
'@typescript-eslint/brace-style':
- error
- allman
'quotes': 'off'
'@typescript-eslint/quotes':
- error
- single
- avoidEscape: true
'@typescript-eslint/no-implicit-any-catch': 'off'
- files:
- '**/*.js'
rules:
eol-last: off
spaced-comment:
- off