Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. Create a class that inherits from a class with a private method 2. Implement the private method in the subclass but use...
``` What steps will reproduce the problem? 1. when using scripts\fixjsstyle-script.py script 2. I try to exclude some files and folders by using: -e editor -x jquery,.min.js,iscroll-lite.js What is the...
``` What steps will reproduce the problem? 1. Run gjslint validation on the following code var f = function() { var m = 1, fn = function() { }, b...
``` I have found linter (both fixjsstyle ang gjslint) sometimes crashing with very obscure errors like: AttributeError: 'NoneType' object has no attribute 'string Now, I don't mind obscure errors, I...
``` What steps will reproduce the problem? Lint this file: define( function() { return { doSomething: function() { var x = ''; return x; } }; } ); What is...
``` > What steps will reproduce the problem? 1. Create a file that starts with: /** ... */ function something() { ... } 2. Run gjslint on that file with...
``` What steps will reproduce the problem? 1. Have a substantial javascript codebase with about 2,000 files 2. Run gjslint without the --undefok=multiprocess switch in a windows environment What is...
``` The following example /** * */ function fff() { var x = { get y() { return 10; } }; } causes this error message: line 20: E0217: Missing...
``` What steps will reproduce the problem? 1. echo 'var b = 1; var a = .b;' > test.js 2. gjslint test.js What is the expected output? Syntax error should...
``` What steps will reproduce the problem? 1. gjslint --nojsdoc --strict lint.js What is the expected output? What do you see instead? Expected no errors, but got Line 6, E:0006:...