Build Scripts Changes
Other changes
Addresses issue #29. Message source can be null when a Parsing error is encountered.
Documentation
Build Scripts Changes
Bug Fixes
Make tests to pass for #23 - 68de47b, Roy Riojas, 22/03/2018 20:59:53
make travis happy again, take 4 - 747f1e6, Roy Riojas, 11/05/2017 17:39:42
use chai-jest-snapshot - 1c6c7a8, Roy Riojas, 11/05/2017 17:32:05
Add snapshot testing to make it easier the testing - c42a40a, Roy Riojas, 11/05/2017 14:04:10
make travis happy again, take 2 - a4e2d42, Roy Riojas, 11/05/2017 13:23:12
make travis happy again - 3a431a9, Roy Riojas, 11/05/2017 12:49:44
Other changes
When the output is constructed, new lines are included in the colored string.
Change iterm escape code - 23ad2ec, Alex Gartner, 21/03/2018 22:05:51
Update README.md - 32a1e55, Roy Riojas, 09/08/2017 17:57:19
Update tests snapshots after upgrading chalk. - 1951a8f, hsxfjames, 06/07/2017 20:56:30
Upgrade chalk to v2.0.1 && DO NOT use removed method chalk.stripColor
- 25ff0b5, hsxfjames, 05/07/2017 04:35:34
Documentation
Build Scripts Changes
Bug Fixes
Documentation
Build Scripts Changes
Documentation
Build Scripts Changes
Bug Fixes
Fix https://github.com/royriojas/eslint-friendly-formatter/issues/20
Documentation
Build Scripts Changes
Features
--eff-filter
option - cac606d, Roy Riojas, 23/05/2016 01:30:10The --eff-filter
filters the rules shown in the report. Usefule to
filter only a given type of rule.
Example
The following will only show the warning for global-require
ruleId
eslint -f node_modules/eslint-friendly-formatter client/**/*.js server/**/*.js -- --eff-by-issue --eff-filter 'global-require' # notice the --
Documentation
Build Scripts Changes
Refactoring
Documentation
Build Scripts Changes
Features
Eslint does not support passing arguments, but we can pass any
parameters using -- --param-here
. So now inside the reporter we can get
the value like process.argv['--param-here']
. This can be used
to pass flags to the reporter so now we can do the following
--eff-by-issue
will group the report by issue type
eslint -f 'node_modules/eslint-friendly-formatter' -- --eff-by-issue
Documentation
Build Scripts Changes
Bug Fixes
Documentation
Build Scripts Changes
Refactoring
Add EFF_NO_LINK_RULES
param. Fixes #18 - 7ed4647, Roy Riojas, 10/04/2016 02:44:06
In your terminal run
export EFF_NO_LINK_RULES=true # rules ids won't be linked to
documentation
Also as part of this commit, rules that contain /
, a common pattern
in eslint plugins, like react/jsx-quotes
will generate a link
to a google search for that rule.
Documentation
Build Scripts Changes
Features
Documentation
Build Scripts Changes
Features
Other changes
Documentation
Build Scripts Changes
Other changes
add tests for errors without source info - 1b61a9d, Nikola Kovacs, 19/08/2015 03:48:07
Fix error when message.source is undefined. - 7a3f6f7, Nikola Kovacs, 18/08/2015 09:28:56
This happens when the javascript file has a parsing error.
Documentation
Build Scripts Changes
Documentation
Build Scripts Changes
Enhancements
Other changes
Fixes #10
Fixes #8
Documentation
Build Scripts Changes
Documentation
Features
export the env variable EFF_ABSOLUTE_PATHS
to make the paths in the
reporter be absolute. If the environment variable is not found the
paths will be reported as eslint
send them.
EFF_ABSOLUTE_PATHS=true eslint -f
path/to/eslint-friendly-formatter/index.js’ file1.js file2.js dir/
Or
add to your profile
export EFF_ABSOLUTE_PATHS=true
Ugly hack. But should work until this issue is resolved:
Other changes
Update README.md - f2f485c, Roy Riojas, 05/07/2015 23:29:26
Update README.md - 5963c02, Roy Riojas, 05/07/2015 23:27:59
Update README.md - edd8854, Roy Riojas, 05/07/2015 23:27:01
Add gulp - 6c9eb73, Fahad Hossain, 05/07/2015 06:08:16
Add Gulp to the list of working examples
Better description of the when to disable the gray coloring
Update README.md - b284801, Roy Riojas, 26/06/2015 00:33:38
Update README.md - 9b00c00, Roy Riojas, 26/06/2015 00:32:41
Add Guake - 4ff1321, Ian VanSchooten, 25/06/2015 23:21:23
Current master of Guake will also auto open a configured editor to the correct line number.
Cosmetic fixes
Build Scripts Changes
Other changes
Build Scripts Changes
Documentation
Build Scripts Changes
Bug Fixes
Basically this fix removes the gray color if the environment variable EFF_NO_GRAY
is set to the string true
.
this can be done very easily in bash doing:
export EFF_NO_GRAY=true
Other changes
Documentation
Build Scripts Changes
Documentation
intellij
or webstorm
- 678886d, Roy Riojas, 18/03/2015 04:36:21
Enhancements
Build Scripts Changes
Release v1.0.4 - 2af7d0c, Roy Riojas, 18/03/2015 04:08:13
Update deps - b1e1539, Roy Riojas, 18/03/2015 04:07:56
Remove not used dep - 5b8433b, Roy Riojas, 04/03/2015 03:04:49
Bump minor version - 097ceb0, Roy Riojas, 03/03/2015 07:13:55
Beautify and validate code with eslint - b2bbaaf, Roy Riojas, 03/03/2015 07:12:33
First commit - 3b57598, Roy Riojas, 03/03/2015 06:33:23
Documentation
undefined
Other changes