Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. Use template string literals (ES6) 2. Use single quote in the template string literals var test = `won't fix`; // =>(0130) Multi-line...
`````` What steps will reproduce the problem? 1. write javascript code like for exameple, if you `fixjsstyle` some code such as ```javascript var a = 1, b = 3, c...
``` What steps will reproduce the problem? - Run gjslint.py using Python 3. What is the expected output? - Normal linting over the source files. What do you see instead?...
``` Using @suppress {reportUnknownTypes} gives: Invalid suppression type: reportUnknownTypes This is because it is missing from SUPPRESS_TYPES in statetracker.py. Should be easy to fix by just adding it there. ```...
``` Enhancement request... The Google JS StyleGuide says "We follow the C++ style for comments in spirit." http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml#Comments The C++ style guide requires two spaces before and one space after...
``` What steps will reproduce the problem? 1. Put "var x = {a: b;};" into syntaxerror.js 2. gjslint syntaxerror.js What is the expected output? What do you see instead? Something...
``` What steps will reproduce the problem? 1. Be a poor, starving freelancer 2. Have to fix some mangled inline JS 3. Run gjslint --check_html -r static/html What is the...
``` Sometimes I write code formatted like this: ---------- if (condA) { console.log('A'); } else //
``` Would it be possible to add a feature so gjslint could skip lines that are marked to be skipped. Cpplint does that when you "mark" a line with //...
``` What steps will reproduce the problem? 1. Check both attached files (fooNoGoogScope.js and fooWithGoogScope.js) What is the expected output? What do you see instead? Expected output is two errors:...