summaryrefslogtreecommitdiffhomepage
path: root/.eslintrc.js
blob: 4351a79db65ac084d716771ce1050a0232357802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
	"root": true,
	"extends": [
		"plugin:obsidian/recommended"
	],
	"parser": "@typescript-eslint/parser",
	"parserOptions": {
		"project": "./tsconfig.json",
		"ecmaVersion": 2020,
		"sourceType": "module"
	},
	"env": {
		"browser": true,
		"node": false
	},
	"plugins": [
		"obsidian"
	],
	"rules": {

	}
}