-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.73 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
{
"name": "project-home-alone",
"private": true,
"scripts": {
"start": "meteor run"
},
"dependencies": {
"meteor-node-stubs": "~0.2.0",
"react": "^15.4.1",
"react-addons-pure-render-mixin": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.8.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {
"linebreak-style": 0,
"comma-dangle": [
2,
"always-multiline"
],
"max-len": [
2,
120
],
"indent": [
2,
4,
{
"SwitchCase": 1,
"VariableDeclarator": 1,
"outerIIFEBody": 1
}
],
"no-restricted-syntax": [
2,
"DebuggerStatement",
"LabeledStatement",
"WithStatement"
],
"arrow-body-style": 1,
"react/jsx-indent": [
2,
4
],
"react/jsx-filename-extension": [
2,
{
"extensions": [
".jsx",
".js"
]
}
],
"react/jsx-indent-props": [
2,
4
],
"react/prefer-stateless-function": 0,
"react/jsx-no-bind": 1
},
"globals": {
"document": true
}
}
}