This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
103 lines (103 loc) · 2.62 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "linter-sass-lint",
"main": "./lib/main",
"version": "1.9.0",
"description": "Atom Linter plugin to lint your Sass/SCSS with pure Node.js sass-lint",
"repository": "https://github.com/AtomLinter/linter-sass-lint",
"license": "MIT",
"keywords": [
"Sass",
"scss",
"sass-lint",
"node-sass",
"linter"
],
"scripts": {
"lint": "eslint ."
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-linter": "10.0.0",
"atom-package-deps": "5.1.0",
"consistent-env": "1.3.1",
"globule": "1.3.1",
"resolve": "1.15.1",
"sass-lint": "1.13.1"
},
"package-deps": [
"linter:2.0.0"
],
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"configSchema": {
"noConfigDisable": {
"title": "Disable when no sass-lint config file is found in your project root",
"type": "boolean",
"description": "and a .sass-lint.yml file is not specified in the .sass-lint.yml Path option",
"default": false
},
"resolvePathsRelativeToConfig": {
"title": "Resolve paths in configuration relative to config file",
"type": "boolean",
"description": "Instead of the default where paths are resolved relative to the project root",
"default": false
},
"configFile": {
"title": ".sass-lint.yml Config File",
"description": "A .sass-lint.yml file to use/fallback to if no config file is found in the \"current\" project root",
"type": "string",
"default": ""
},
"globalNodePath": {
"title": "Global Node Installation Path",
"description": "Run `npm get prefix` and paste the result here",
"type": "string",
"default": ""
},
"globalSassLint": {
"title": "Use global sass-lint installation",
"description": "The latest sass-lint is included in this package but if you'd like to use a globally installed one enable it here.\nMake sure sass-lint is installed globally and is in your `$PATH`",
"type": "boolean",
"default": false
}
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.20.1",
"jasmine-fix": "1.3.1"
},
"renovate": {
"extends": [
"config:base"
]
},
"eslintConfig": {
"rules": {
"global-require": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"atom"
]
}
]
},
"extends": "airbnb-base",
"globals": {
"atom": true
},
"env": {
"node": true,
"browser": true
}
}
}