This repository has been archived by the owner on Jul 5, 2018. It is now read-only.
forked from AtomLinter/linter-pylint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.6 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
{
"name": "linter-pylint",
"main": "./lib/main.js",
"version": "2.1.1",
"private": true,
"description": "Lint python on the fly, using pylint",
"repository": "https://github.com/AtomLinter/linter-pylint",
"license": "MIT",
"scripts": {
"test": "apm test",
"lint": "eslint ."
},
"engines": {
"atom": ">=1.4.0 <2.0.0"
},
"configSchema": {
"executablePath": {
"type": "string",
"default": "pylint",
"description": "Command or full path to pylint. Use %p for current project directory (no trailing /) or %h for current project name.",
"order": 1
},
"pythonPath": {
"type": "string",
"default": "",
"description": "Paths to be added to $PYTHONPATH. Use %p for current project directory or %f for the directory of the current file.",
"order": 1
},
"rcFile": {
"type": "string",
"default": "",
"description": "Path to pylintrc file. Use %p for the current project directory or %f for the directory of the current file.",
"order": 2
},
"workingDirectory": {
"type": "string",
"default": "%p",
"description": "Directory pylint is run from. Use %p for the current project directory or %f for the directory of the current file.",
"order": 2
},
"messageFormat": {
"type": "string",
"default": "%i %m",
"description": "Format for Pylint messages where %m is the message, %i is the numeric mesasge ID (e.g. W0613) and %s is the human-readable message ID (e.g. unused-argument).",
"order": 2
},
"disableTimeout": {
"title": "Disable Execution Timeout",
"type": "boolean",
"default": false,
"description": "By default processes running longer than 10 seconds will be automatically terminated. Enable this option if you are getting messages about process execution timing out.",
"order": 3
}
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.5.0",
"lazy-req": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.6.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jasmine-fix": "^1.3.1"
},
"package-deps": [
"linter:2.0.0"
],
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"global-require": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"atom"
]
}
]
},
"globals": {
"atom": true
},
"env": {
"node": true
}
}
}