File tree 6 files changed +67
-0
lines changed
6 files changed +67
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "presets" : [" es2015" ," stage-3" ]
3
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "parser": "babel-eslint",
3
+ "env": {
4
+ "browser": true,
5
+ "mocha": true,
6
+ "node": true
7
+ },
8
+ "parserOptions": {
9
+ "ecmaVersion": 6,
10
+ "sourceType": "module",
11
+ "ecmaFeatures": {
12
+ "modules": true
13
+ }
14
+ },
15
+ "rules": {
16
+ "indent": [
17
+ "error",
18
+ 4
19
+ ],
20
+ "max-len": [
21
+ "error",
22
+ {
23
+ "code": 120,
24
+ "tabWidth": 4,
25
+ "ignoreUrls": true
26
+ }
27
+ ],
28
+ "no-underscore-dangle": [
29
+ "error",
30
+ {
31
+ "allow": [
32
+ "_id"
33
+ ]
34
+ }
35
+ ],
36
+ "import/no-extraneous-dependencies": "off",
37
+ "no-param-reassign": [
38
+ "error",
39
+ {
40
+ "props": false
41
+ }
42
+ ]
43
+ }
44
+ }
Original file line number Diff line number Diff line change
1
+ * .tgz
2
+ * .swp
3
+ * .swo
4
+ README.html
5
+ node_modules
6
+ coverage /
7
+ * .sw ?
8
+ lib
Original file line number Diff line number Diff line change
1
+ " https://github.com/thinca/vim-localrc/blob/master/doc/localrc.txt
2
+ set formatoptions += tl
3
+ set expandtab
4
+ set tabstop = 4
5
+ set softtabstop = 4
6
+ set shiftwidth = 4
Original file line number Diff line number Diff line change
1
+ coverage /
2
+ bench /
3
+ examples /
4
+ test /
Original file line number Diff line number Diff line change
1
+ spin = false
2
+ progress = false
You can’t perform that action at this time.
0 commit comments