UNPKG

sc-eslint

Version:

A small wrapper of eslint, pre-configured to StoneCypher's preferences. MIT licensed.

14 lines (8 loc) 271 B
// it is intended that this test set should fail // this shows that the custom ruleset is being enforced negatively // this violates no-comma-dangle, which is off by default (function() { "use strict"; var bar = [1, 2, ]; bar.push(3); }());