google / eslint-config-google

ESLint shareable config for the Google JavaScript style guide
Apache License 2.0
1.74k stars 140 forks source link

Whitelist ES6-style imports: const x = goog.require('x'); #56

Closed nchavez324 closed 5 years ago

nchavez324 commented 5 years ago

goog.require('x'); is the old ES5 style, superseded by: const x = goog.require('x');