-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1014 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1014 Bytes
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
{
"name": "iptv-proxy-v2",
"version": "2.0.0",
"description": "IPTV M3U Proxy with filtering and tag extraction",
"private": true,
"scripts": {
"lint": "eslint templates/**/*.html",
"lint:fix": "eslint templates/**/*.html --fix",
"test": "echo 'No JS tests yet' && exit 0"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.27.0",
"@html-eslint/parser": "^0.27.0",
"eslint": "^8.57.0",
"eslint-plugin-html": "^8.1.2"
},
"eslintConfig": {
"extends": [
"plugin:@html-eslint/recommended"
],
"parser": "@html-eslint/parser",
"plugins": [
"@html-eslint"
],
"rules": {
"@html-eslint/require-doctype": "off",
"@html-eslint/no-inline-styles": "off",
"@html-eslint/require-closing-tags": "error",
"@html-eslint/no-duplicate-attrs": "error",
"@html-eslint/no-duplicate-id": "error"
},
"overrides": [
{
"files": ["*.html"],
"parser": "@html-eslint/parser"
}
]
}
}