summaryrefslogtreecommitdiffhomepage
path: root/.eslintrc.js
blob: 6558a7a56fc44eaebb4096f6baf7db1ec003cae9 (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:obsidianmd/recommended"
	],
	"parser": "@typescript-eslint/parser",
	"parserOptions": {
		"project": "./tsconfig.json",
		"ecmaVersion": 2020,
		"sourceType": "module"
	},
	"env": {
		"browser": true,
		"node": false
	},
	"plugins": [
		"obsidianmd"
	],
	"rules": {

	}
}