aboutsummaryrefslogtreecommitdiff
path: root/packages/server/.eslintrc.json
blob: 9ace4412f9649f309fb21d2e02a806818433cb94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
	"env": {
		"commonjs": true,
		"es2021": true,
		"node": true
	},
	"extends": [
		"standard",
		"plugin:@typescript-eslint/recommended",
		"base"
	],
	"parserOptions": {
		"ecmaVersion": 12,
		"parser": "@typescript-eslint/parser"
	},
	"plugins": [
		"@typescript-eslint",
		"tsdoc"
	]
}