Closed Raynos closed 10 years ago
Here are a few issues I ran into:
validthis: true
this
newcap: true
Foo()
no-undef: 0
no-underscore-dangle: 0
._foo
max-statements: [0, 200]
All those are fixed in the most recent version except max-statements and no-undef, which I'm investigating now. Plus, tests are failing.
Here are a few issues I ran into:
validthis: true
needed to make it understandthis
.newcap: true
needed to make jshint shut up aboutFoo()
no-undef: 0
needed to work around an eslint bug.no-underscore-dangle: 0
node core style uses._foo
so we need this.max-statements: [0, 200]
max-statements is too low, i cranked it up all the way to 200.