forked from aws-cloudformation/cfn-lint-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.79 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
{
"name": "atom-cfn-lint",
"main": "./lib/atom-cfn-lint",
"version": "0.5.1",
"description": "Validate CloudFormation yaml/json templates against the CloudFormation spec and additional checks. Includes checking valid values for resource properties and best practices.",
"keywords": [
"linter",
"AWS",
"CloudFormation"
],
"repository": "https://github.com/awslabs/aws-cfn-lint-atom",
"license": "Apache-2.0",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^5.0.2",
"atom-package-deps": "^4.6.0"
},
"package-deps": [
"linter"
],
"scripts": {
"test": "apm test",
"lint": "eslint lib spec"
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"readmeFilename": "README.md",
"devDependencies": {
"babel-eslint": "latest",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jasmine-fix": "^1.3.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"no-console": "off",
"semi": [
"error",
"never"
],
"comma-dangle": "off",
"global-require": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"atom"
]
}
],
"object-curly-newline": [
"error",
{
"ObjectExpression": {
"minProperties": 5,
"multiline": true,
"consistent": true
},
"ObjectPattern": {
"minProperties": 5,
"multiline": true,
"consistent": true
}
}
]
},
"globals": {
"atom": "true"
},
"env": {
"node": true,
"browser": true
}
}
}