File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/eslint-config-airbnb-base Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 47
47
"devDependencies" : {
48
48
"babel-preset-airbnb" : " ^2.0.0" ,
49
49
"babel-tape-runner" : " ^2.0.1" ,
50
- "eslint" : " ^3.1.1 " ,
50
+ "eslint" : " ^3.2.0 " ,
51
51
"eslint-find-rules" : " ^1.11.1" ,
52
52
"eslint-plugin-import" : " ^1.12.0" ,
53
53
"in-publish" : " ^2.0.0" ,
54
54
"tape" : " ^4.6.0"
55
55
},
56
56
"peerDependencies" : {
57
- "eslint" : " ^3.1.1 " ,
57
+ "eslint" : " ^3.2.0 " ,
58
58
"eslint-plugin-import" : " ^1.12.0"
59
59
},
60
60
"engines" : {
Original file line number Diff line number Diff line change @@ -191,6 +191,10 @@ module.exports = {
191
191
// disallow space between function identifier and application
192
192
'no-spaced-func' : 2 ,
193
193
194
+ // disallow tab characters entirely
195
+ // TODO: enable
196
+ 'no-tabs' : 0 ,
197
+
194
198
// disallow the use of ternary operators
195
199
'no-ternary' : 0 ,
196
200
You can’t perform that action at this time.
0 commit comments