-
-
Notifications
You must be signed in to change notification settings - Fork 198
/
package.json
50 lines (50 loc) · 1017 Bytes
/
package.json
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
{
"eslintConfig": {
"extends": "plugin:toml/standard",
"rules": {
"toml/indent": [
"error",
4,
{
"subTables": 1,
"keyValuePairs": 1
}
],
"toml/padding-line-between-tables": "off",
"toml/spaced-comment": "off",
"toml/tables-order": "off",
"toml/no-mixed-type-in-array": "error",
"eol-last": [
"error",
"always"
],
"indent": "error",
"no-mixed-spaces-and-tabs": "error",
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxBOF": 0,
"maxEOF": 0
}
],
"no-tabs": "error",
"no-trailing-spaces": "error",
"unicode-bom": "error"
}
},
"eslintIgnore": [
"/*.toml",
"**/*.config.toml"
],
"devDependencies": {
"eslint": "^8.45.0",
"eslint-plugin-toml": "^0.5.0"
}
}