This repository has been archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.77 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "linter-erb-lint",
"main": "./lib/linter-erb-lint.js",
"version": "1.0.0",
"description": "Linter plugin for ERB, using Shopify erb-lint",
"repository": {
"type": "git",
"url": "https://github.com/vzamanillo/linter-erb-lint"
},
"keywords": [
"linter",
"lint",
"erb"
],
"license": "MIT",
"configSchema": {
"executablePath": {
"type": "string",
"description": "The path to the erblint. Find by running `which erblint`",
"default": "erblint"
},
"disableWhenNoConfigFile": {
"type": "boolean",
"title": "Disable when no .erb-lint.yml config file is found",
"default": false,
"description": "Only run linter if a erb-lint config file is found somewhere in the path for the current file."
}
},
"bugs": {
"url": "https://github.com/vzamanillo/linter-erb-lint/issues"
},
"homepage": "https://github.com/vzamanillo/linter-erb-lint#readme",
"engines": {
"atom": ">=1.7.0 <2.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "apm test"
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.0.1"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jasmine-fix": "^1.3.0"
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
"1.1.0": "provideLinter"
}
}
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"global-require": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"atom"
]
}
]
},
"globals": {
"atom": true
},
"env": {
"node": true,
"browser": true
}
}
}