aboutsummaryrefslogtreecommitdiff
path: root/packages/client/.eslintrc.json
blob: d60df09837c488514d7757c534dd794bb0a838c9 (plain)
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
{
	"env": {
		"node": true
	},
	"parser": "vue-eslint-parser",
	"parserOptions": {
		"parser": "@typescript-eslint/parser"
	},
	"extends": [
		"plugin:vue/vue3-strongly-recommended",
		"@vue/standard",
		"@vue/typescript",
		"base"
	],
	"overrides": [
		{
			"files": ["*.ts"],
			"extends": [
				"plugin:@typescript-eslint/recommended"
			]
		}
	],
	"rules": {
		"vue/max-attributes-per-line": [ "warn", {
			"singleline": {
				"max": 2,
				"allowFirstLine": true
			},
			"multiline": {
				"max": 2,
				"allowFirstLine": false
			}
		} ],
		"vue/html-closing-bracket-newline": [ "error", {
			"singleline": "never",
			"multiline": "never"
		} ],
		"vue/html-indent": [ "error", "tab" ],
		"typescript-eslint/no-var-requires": "off"
	}
}