-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.31 KB
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
{
"name": "boxes-with-physics",
"private": true,
"version": "0.0.0",
"description": "A direct manipulation proof of concept",
"main": "",
"scripts": {
"test": "eslint *.js test/*.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"eslint": "^3.7.0"
},
"eslintConfig": {
"env": {
"browser": true,
"jquery": true,
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"fixture": true
},
"rules": {
"curly": 2,
"eqeqeq": 2,
"no-eval": 2,
"no-global-assign": 2,
"no-lone-blocks": 2,
"no-multi-spaces": 2,
"no-return-assign": 2,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"camelcase": [2, { "properties": "never" }],
"func-style": [2, "expression"],
"comma-spacing": 2,
"computed-property-spacing": 2,
"func-call-spacing": 2,
"indent": 2,
"key-spacing": 2,
"keyword-spacing": 2,
"semi-spacing": 2,
"space-in-parens": 2,
"space-infix-ops": 2,
"space-unary-ops": 2,
"spaced-comment": 2,
"lines-around-comment": 2,
"max-len": [2, 128],
"new-parens": 2,
"no-tabs": 2,
"operator-linebreak": [2, "after"],
"no-console": 1,
"semi": [2, "always"]
}
}
}