Demo Angular 4.x.x Progressive Web Application with CI/CD and full test suite
aaron-bond/ProfanityDetector 0
This is a simple library for detecting profanities within a text string.
Visual Studio Extension that installs additional color themes
fork aaron-bond/ProfanityDetector
This is a simple library for detecting profanities within a text string.
fork in 15 days
push eventaaron-bond/ProfanityDetector
commit sha 5e92ddbc6144f863be4c4ed1df89af246264bab2
Merge pull request #8 from aaron-bond/main Adding ContainsProfanity method
commit sha 7236b39522d8330625c24fda16bdb5f71da5ef16
Update unit test .net core version
commit sha 49e1802c61154c7dc60e118efb412f2b814ae57f
update nuget version number
commit sha 80b3d7c178c2218bc219b23cc512862bd4fccdd2
Check in new Nuget package
commit sha e3e93c733374a50b0e8b9ed21792fe10ea61b659
update Nuget version number
commit sha 24d1dc7082c9bb773269249d75c219bb85a51a83
Update dotnetcore.yml
commit sha 94e96d71a2cd950c62adcf730c48a33279bf934b
revert core version
commit sha 506f82f1b5fc56ae8624094613ec7a47e6207445
Merge remote-tracking branch 'origin/main' into main
commit sha e3d52607202c2e1c46ac8a98a3915b5d291880cf
Update dotnetcore.yml
commit sha bfed215ce78fec7de8d1e5c9374fa0451738e8fd
fixes bug in regex caused by profanity list entries containing dollar sign
commit sha c32d6b8cf09a39b3ad35f894642aac0927cec30b
Merge pull request #11 from willemaster/issues/10 fixes bug in regex caused by profanity list entries containing dollar…
commit sha 894bb5510a9dfb8e2a8082a2b4fd439cbc88aee4
Update NuGet Package to 0.1.7
commit sha 67032e8af9171c865524a39ab7c2e266ef0027df
Update README.md
commit sha f5188a8992eced0fee0c7d6f0571ef1ea776a5e3
Merge pull request #1 from stephenhaunts/main Merging upstream
push time in 15 days
startedstephenhaunts/ProfanityDetector
started time in 24 days
issue commentaaron-bond/better-comments
Please add support for .svelte files
I have plans to add multiple delimiter types shortly which will allow for this to work. See https://github.com/aaron-bond/better-comments/issues/154 and https://github.com/aaron-bond/better-comments/issues/33
comment created time in 24 days
issue closedaaron-bond/better-comments
Hi!
First of all, I love the extension. It helps me, besides other things, better document my code. One thing that bothers me is how to make proper multiline comments. In order to do that I was prefixing every single line, like this:
! It's very important it works the way it works.
! Explanation of relationships and the bigger picture.
! List of everything I was considering when I wrote the code.
But it's not very practical when doing TODO comments. In the settings and docs, I found that extension somehow supports multiline comments, but I can't find how exactly. Here is my latest try after reading other issues:

So my question is - how to do proper multline comments?
closed time in 25 days
tomasboncoissue closedaaron-bond/better-comments
Coloring tag doesn't work like README
I've tried commenting like README.md, but tag color does not appear when the * is placed in front of other tag.

I have no problem with this situation, but I thought I misconfigured something about the plug-in for a day. The picture of README.md may be changed.
closed time in 25 days
QuietJoonissue commentaaron-bond/better-comments
Bash string manipulation commands using `#*` incorrectly colored as "important" comments
The problem is that I use a general mechanism for detecting comments based on a delimiter. There's nothing in the logic currently to say that something is a comment in certain situations vs others it's not.
For example:
VAR=${VAR#*[}
isn't a comment here, but in C#, the following would be:
var x = 123;//abc
So in one language, a space (or newline) is necessary to denote a comment, and in another it's optional. Coming up with a solution that fixes one and doesn't break the other is tricky
comment created time in 25 days
issue closedaaron-bond/better-comments
[Feature request] Ignore "#!/" on the first line
A line start with "#!/" is often a shebang line (I does not think an alert will start with "/"), so I think it shuold not be decorated.
I have read issue #61, but there are many interpreters other than python, such as bash, lua, tcl, etc.
Do you think this is an considerable option? @aaron-bond
closed time in 25 days
guojizeissue commentaaron-bond/better-comments
[Feature request] Ignore "#!/" on the first line
If I'm being honest - there are a lot of bugs raised specifically about the fact that in Python the extension ignores the first line and that's a right pain in the arse. Gonna close this until someone requests it for a specific language
comment created time in 25 days
issue closedaaron-bond/better-comments
python vs-code not functioning well

closed time in 25 days
TheFoxDecoderissue commentaaron-bond/better-comments
python vs-code not functioning well
Closing this since without more info I've nothing to go on
comment created time in 25 days
issue closedaaron-bond/better-comments
Feature idea - Comments as Footnotes
Saw this and thought it would be an awesome feature to add to your already amazing extension. https://twitter.com/justinmduke/status/1244042301225070592
Just seeing that mockup (below) is VERY compelling. In a nutshell, the ability to properly collapse and hide comments would be fantastic. Once hidden, give them some visibility and the easy option to view with a simple hover or click. Also probably needs an easy way to toggle the collapse/expand for all of them. Maybe also allow an option to pin one or more comments open?
You can read a tiny bit more about it here. https://css-tricks.com/newsletter/192-animating-gradients-emoji-favicons-and-the-art-of-code-comments/

closed time in 25 days
jeremy-farranceissue commentaaron-bond/better-comments
Feature idea - Comments as Footnotes
This is an interesting idea but if anything it looks more like a mechanism to call out to some internal documentation. I'd sooner implement a totally new extension which allows you to "peek" urls in a comment and you could point to whatever you want. That's actually a really neat idea.
I also appreciate someone advocating on behalf of better comments (™ :p) in general, but I'd argue that hiding them away is anti-pattern.
Still, food for thought, so thanks :)
comment created time in 25 days
issue closedaaron-bond/better-comments
Bug: Parses comment tokens inside of strings
Treats comment tokens as actual comments inside of strings. This is bad news for something like hex codes or hash tags... Example:

The same problem seems to exist in other languages, but // comes up a bit less option in Javascript strings, for example, so it's not as big of a deal:

closed time in 25 days
garrettgsbissue commentaaron-bond/better-comments
Bug: Parses comment tokens inside of strings
Yeah, this has come up on this too: #87
Closing as a duplicate, but working on a solution
comment created time in 25 days
issue closedaaron-bond/better-comments
ShellScript coding considered as a comment
As per below the format "${example##*}" is valid script code, looks it's treated as comments in this plugin.

closed time in 25 days
tpfarulissue commentaaron-bond/better-comments
ShellScript coding considered as a comment
Closing as a duplicate, tracking with #87
comment created time in 25 days
push eventaaron-bond/better-comments
commit sha b0ede0b0fa9cd87afb2aca9fbb04136d57537688
Correcting engine version
push time in a month
push eventaaron-bond/better-comments
commit sha 6cc1246c5484f0ad2f080c5cbd54590e41c63438
Updating version information
push time in a month
PR closed aaron-bond/better-comments
I think these are sane defaults
pr closed time in a month
issue commentaaron-bond/better-comments
Can you include a TODO outline to this extension?
I made the decision not to add this to the extension - given that each user can configure their own comment formats to highlight, it's something that would be far too comprehensive to add in here.
comment created time in a month
PR closed aaron-bond/better-comments
pr closed time in a month
pull request commentaaron-bond/better-comments
Brought these in here https://github.com/aaron-bond/better-comments/commit/db2b4a940918177d41214ee04be9e4c9f558abba
comment created time in a month
push eventaaron-bond/better-comments
commit sha db2b4a940918177d41214ee04be9e4c9f558abba
adding xml and brightscript support
push time in a month
push eventaaron-bond/better-comments
commit sha fdce6b84ef893dd90d1d636581fc3852561658cc
updating changelog
push time in a month
issue commentaaron-bond/better-comments
Feature Request: language extension additions
What I meant is you can change the language mode to whatever you want - HTML in this case. Have you tried that?
comment created time in a month
issue closedaaron-bond/better-comments
Can you include a TODO outline to this extension?
Similar to https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree, just without the need to use another comment extension...
closed time in a month
GitMenschissue commentaaron-bond/better-comments
Can you include a TODO outline to this extension?
I made the decision not to add this to the extension - given that each user can configure their own comment formats to highlight, it's something that would be far too comprehensive to add in here.
comment created time in a month
issue closedaaron-bond/better-comments
Needs "better comments" summary for opened folder/workspace
Pretty much like PROBLEMS window, there should be a specific tab for COMMENTS (much like a TODO list)

closed time in a month
Pra3t0r5issue commentaaron-bond/better-comments
Needs "better comments" summary for opened folder/workspace
I made the decision not to add this to the extension - given that each user can configure their own comment formats to highlight, it's something that would be far too comprehensive to add in here.
comment created time in a month
issue closedaaron-bond/better-comments
[Feature Request] Add list style ToDo along side X
For the Todo lists I offer to add a new microsyntax like this:
// TODO Create subsequent Person, RealPerson, Teacher and Student records
// [x] Create Person
// [ ] Create RealPerson
// [ ] Create Teacher
// [ ] Create Student
then the Create Person item will be Strike-through and the other came just like TODO style or a bit different.
closed time in a month
Hamckerissue commentaaron-bond/better-comments
[Feature Request] Add list style ToDo along side X
You can add this to your own configuration in the settings. I actually think this is pretty cool, but it's not something I'd add to the defaults
comment created time in a month
issue commentaaron-bond/better-comments
I made the decision not to add this to the extension - given that each user can configure their own comment formats to highlight, it's something that would be far too comprehensive to add in here.
comment created time in a month
issue closedaaron-bond/better-comments
Color spans until end-of-line, not end-of-comment
Simple example:

In cases where there is
{
/*! safari */ -webkit-whatever: unset;
/*! IE */ -ms-whatever: unset;
/*! FF */ -moz-whatever: unset;
}
... it kills all styling on the lines
closed time in a month
BananaAcidissue commentaaron-bond/better-comments
Color spans until end-of-line, not end-of-comment
Tracking via https://github.com/aaron-bond/better-comments/issues/233
comment created time in a month
issue closedaaron-bond/better-comments
Single line c-style comments aren't styled
example:
// this won't be styled
/* TODO: */
// this will be styled
/*
TODO
*/
closed time in a month
djbaumannissue commentaaron-bond/better-comments
Single line c-style comments aren't styled
Tracking via https://github.com/aaron-bond/better-comments/issues/256
comment created time in a month
issue openedaaron-bond/better-comments
Single line block comments don't work as expected
Across multiple languages, having a block comment on a single line causes unintented highlighting (or no highlighting at all).
For example:

This is caused by the way some of the comment delimiters are set up in the code and the way the regex finds block comments.
This bug tracks the following: https://github.com/aaron-bond/better-comments/issues/119 https://github.com/aaron-bond/better-comments/issues/233
created time in a month
issue closedaaron-bond/better-comments
Highlighting not supported on single quote Python docstrings

As shown above, if the first line is a TODO comment, for some reason it is not highlighted in the editor. If I push the comments down one line (e.g. so that the first comment is on line 2), then it highlights as usual.
closed time in a month
jadchaarissue commentaaron-bond/better-comments
Highlighting not supported on single quote Python docstrings
Closing this out as I've no reasonable alternative here without ballooning the scope of the regex. Will keep it in mind if any future requests come in
comment created time in a month
issue closedaaron-bond/better-comments
Feature request: Add support for html comment(<!-- Todo...-->)
It will be very nice if this tool could highlight the html Todo comment.
closed time in a month
ylzsmallsunissue closedaaron-bond/better-comments
Comments in HTML script tag don't highlight
I'm finding that comments in a <script> tag in an HTML file are not highlighting 😢

Thanks for making this extension, love it.
closed time in a month
tetondevissue closedaaron-bond/better-comments
Better Comments is not working in SASS
In the documentation for the better comments extension for VS Code, it states that better comments works with both SCSS and SASS. However, this is not the case currently. Currently, better comments is not working in SASS files but it is working in SCSS files. This is very frustrating as the documentation is telling you something different than what it actually does. Please, would you fix the support for comments in SASS, both silent (// text here) and loud comments (/* text here*/). It is really frustrating not to be able to use better comments in SASS and might be a reason for me to uninstall it if the problem is not fixed soon. Please try and fix support for SASS comments as soon as possible as it would be a good reason for me to not recommend this extension if it is not fixed soon. Thanks.

closed time in a month
MrDogeBropush eventaaron-bond/better-comments
commit sha 7decffb8ac08c92c9bdfc2a9e766d5937adf0168
Fixing SASS support, closes #215, closes #123
push time in a month
issue closedaaron-bond/better-comments
sass file extension not supported
sass is mentioned in the list on the read me but is not in the code (scss only).
closed time in a month
ncodefunissue closedaaron-bond/better-comments
Regular multiline comments where each line starts with asterisk parse incorrectly
When you have a C style multiline comment where each line starts with an asterisk, the comment is parsed as if each line were a highlight. This does not happen when doc style multiline comments (/**) are used.
Example:
/*
* this isn't supposed to be highlighted
* ? This is a question but is not marked as such
*/
/**
* this isn't supposed to be highlighted
* ? This is a question but is not marked as such
*/

closed time in a month
matter123issue closedaaron-bond/better-comments
Specify in documentation that multiline comments require extra asterisk
Expected
Multi-line comments triggerd by /* are colorized like the rest.
Actual
Only multi-line comments starting with /** are colorized.
See also:

In other words, I didn't realize this extension is opinionated and expects that JSDoc patterns are used. In the ideal world, TODO and FIXMEs wouldn't even reach documentation, so expecting that a project follow JSDoc patterns seems like a catch-22 (or anti-pattern?).
closed time in a month
bean5issue commentaaron-bond/better-comments
Specify in documentation that multiline comments require extra asterisk
I'll make an update to the ReadMe to make the JSDoc vs normal block comments distinction a bit clearer
comment created time in a month
issue commentaaron-bond/better-comments
Multiline Doesn't work with CSharp (#) Language
Can you give me a bit more information here? C# is the main language I work in and I use this all the time:

comment created time in a month
push eventaaron-bond/better-comments
commit sha 541e98633d8233e131d06d0f4ba0ca186bb2045f
Adding csharp sample
push time in a month
issue commentaaron-bond/better-comments
URL in a comment is unintentionally tagged
I've just realised that this is actually an issue with your custom settings. You're using BUG as a delimiter, which is then caught by https://bugzilla
I don't think there's a workaround here - the extension can't make any assumptions about what tags a user chooses, so it's hard to come up with exclusionary criteria.
How would it know when you meant to highlight //bug vs not?
comment created time in a month
issue commentaaron-bond/better-comments
URL in a comment is unintentionally tagged
Really surprised I hadn't noticed this. Thanks for raising it; I'll get the regex updated to avoid catching any character other than whitespace between the start of the comment and the highlight delimiter
comment created time in a month
issue closedaaron-bond/better-comments
Can't locate settings file for Visual Studio
I need to change the font colors, etc for some items that better comments uses. All the docs say change the user or workspace settings. However, I can't find where those settings are or how to add the changes. I have searched my pc and can't find anything with the "better-comments" tags.
closed time in a month
dtsob75issue commentaaron-bond/better-comments
Can't locate settings file for Visual Studio
This extension doesn't work on VS2019. Perhaps you could try the brilliant extension by @omsharp: https://marketplace.visualstudio.com/items?itemName=OmarRwemi.BetterComments
https://github.com/omsharp/BetterComments
comment created time in a month
issue commentaaron-bond/better-comments
I've never seen that file extension. Presumably it's this: https://github.com/matthewpalmer/.todo ?
If so, what comments are you expecting to highlight?
comment created time in a month
issue closedaaron-bond/better-comments
[feature request] support for bold and italic
Title, just like ~strikethrough~.
closed time in a month
RubenVergissue commentaaron-bond/better-comments
[feature request] support for bold and italic
Resolved via #50 - will be in the next version of the extension
comment created time in a month
push eventaaron-bond/better-comments
commit sha b7a5509a1138e59aa9c796bf799b1aa24b2f7425
Updating changelog
commit sha f960492c33d3176312ac5947dec5db30404d1fdf
Fixing shaderlab support, closes #245
push time in a month
issue closedaaron-bond/better-comments
Feature request: more font style options for comment tag
Currently, this extension only supports color and strikethrough options. Could you please add more font style options for comment tag?
Here's some other font style options that can be provided:
- bold
- italic
- <u>underline</u>
- font size
- font family
Thank you.
closed time in a month
pakLebahissue commentaaron-bond/better-comments
Feature request: more font style options for comment tag
Thanks to @Fr33maan this feature will be in the next version of the extension, so keep an eye out :)
comment created time in a month
PR closed aaron-bond/better-comments
FIX CI -> Stack overflow is our best friend -> link to the fix
New features in response to #50
- add them as boolean
- fontWeight not added because fontWeight accepts a string while the css doc await for a number. I don't want to include misleading options (property could be "bold", "700" but not 700) , better to keep a boolean than introduce complicated usage.
- fontFamily and fontSize not availables in VSCode doc
pr closed time in a month
pull request commentaaron-bond/better-comments
FEAT/FIX - bold/italic/underline + fix CI
merged in here https://github.com/aaron-bond/better-comments/commit/e41ccc42252399423db8ebf7bacc7a36422bed7f Thanks for this. Will get a couple more features added and release a version this week :)
comment created time in a month
push eventaaron-bond/better-comments
commit sha e41ccc42252399423db8ebf7bacc7a36422bed7f
Pr/253 (#255) * FEAT - add underline/bold/italic to tags In response to https://github.com/aaron-bond/better-comments/issues/50 * FIX - CI is now working Co-authored-by: Fr33maan <[email protected]> Co-authored-by: Fr33maan <[email protected]>
push time in a month
pull request commentaaron-bond/better-comments
FEAT/FIX - bold/italic/underline + fix CI
It occurs to me that there's no technical limitation to make these mutually-exclusive. So I'm making some changes to the PR unless you've objections?
comment created time in a month
pull request commentaaron-bond/better-comments
FEAT/FIX - bold/italic/underline + fix CI
It's OK, you've convinced me. I'm testing this at the minute and assuming it's all good I'll merge today. Thanks :)
comment created time in a month
push eventaaron-bond/better-comments
commit sha b44ad59d84f8955fae9e14fcc0dd38f772685ea5
Updating package lock
commit sha 1365e4da6e87d9a880830c35f55168b127d2a346
reverting to tabs temporarily
push time in a month
push eventaaron-bond/better-comments
commit sha 26c16cd4808f60313870e74e5ca150aebacbdd99
Updating package to latest versions
push time in a month
pull request commentaaron-bond/better-comments
FEAT/FIX - bold/italic/underline + fix CI
Thanks for this. I really like the bold/italic changes. I'm updating the vscode version too, so that should fix the issue with the typings.
I'm a little worried about introducing mutually-exclusive settings though re. the underline / strikethrough. That feels like something that'll get a lot of complaints. Is underline something you need?
comment created time in a month
issue commentaaron-bond/better-comments
I've never heard anything back on my SO questions or other attempts to find a resolution to this.
I've raised a feature request here: https://github.com/microsoft/vscode/issues/102390
comment created time in a month
issue openedmicrosoft/vscode
Add the option to exclude whitespace characters from setDecoration
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. --> I manage the Better Comments extension and an issue that has come up a few times is that users would like to be able to have the color styles applied to text only within comments; not the whitespace.
Here, I have a styles applied changing the comment colors:

Rather than having whitespace characters go red/blue/green here, it would be nice to be able to exclude those and leave them as-is.
Thanks!
created time in a month
issue commentstephenhaunts/ProfanityDetector
The reverse-Scunthorpe problem
Thank you kindly @stephenhaunts
comment created time in a month
issue commentstephenhaunts/ProfanityDetector
The reverse-Scunthorpe problem
My PR has been merged already; the method is ContainsProfanity. I think @stephenhaunts is planning to release the nuget package with the update.
comment created time in a month
pull request commentstephenhaunts/ProfanityDetector
Adding ContainsProfanity method
@stephenhaunts thanks for bringing this in :) much appreciated. If you don't mind, please give me a heads-up when this is expected in Nuget. Thanks!
comment created time in a month
pull request commentstephenhaunts/ProfanityDetector
Adding ContainsProfanity method
@stephenhaunts let me know if there's a more appropriate name for the method
comment created time in a month
PR opened stephenhaunts/ProfanityDetector
The Contains Profanity method will allow for incidences Scunthorpe being caught.
With a bit more time I think I'd like to profile the performance of the method but it appears to run pretty quick in my tests so far.
pr created time in a month
push eventaaron-bond/ProfanityDetector
commit sha f0540c1b5f8e3f5b6c1fcff3b0c9944553b18a58
Updating Interface to match changes
push time in a month
push eventaaron-bond/ProfanityDetector
commit sha f052c43833ec6ae092ae40ddac0479f85caeb471
Adding ContainsProfanity method and some tests
push time in a month
fork aaron-bond/ProfanityDetector
This is a simple library for detecting profanities within a text string.
fork in a month
issue commentstephenhaunts/ProfanityDetector
The reverse-Scunthorpe problem
In my case it's a tool that generates random Ids for users; I don't want to end up with ass123 accidentally so this tool can give me a retry case.
comment created time in a month
issue commentstephenhaunts/ProfanityDetector
The reverse-Scunthorpe problem
@stephenhaunts if it's not something the package already does, would you be open to a PR with a new public method specifically to find cases like Scunthorpe?
comment created time in a month
issue commentstephenhaunts/ProfanityDetector
The reverse-Scunthorpe problem
@stephenhaunts yep, exactly. Is that a thing?
comment created time in a month
issue openedstephenhaunts/ProfanityDetector
The reverse-Scunthorpe problem
Hi there,
Assuming I have a use-case where I want the profanity in Scunthorpe to be detected - is that something I can do here? I've had a look through the public methods and can't find anything appropriate. Any suggestions?
Thanks!
created time in a month
pull request commentdotnet/BenchmarkDotNet
@adamsitnik Hi, I can see some references to .NET standard support but not much for core 3.1. Is there a timeframe on that support?
comment created time in a month
push eventaaron-bond/trivia
commit sha ba22377dd3356b538bbc2644a7f7c027705d88c2
fixing animation
push time in 2 months
push eventaaron-bond/trivia
commit sha 69f96ff7373d39afdbe4e793621c2737c5fc4cbc
removing lobby id pop up
push time in 2 months
push eventaaron-bond/trivia-node
commit sha b4768cd7140cc883ac0c48301c9607cfed569acf
adding lobby closed
push time in 2 months
push eventaaron-bond/xbox-clips
Deployment Bot (from Travis CI)
commit sha 1d73da4c40178fcbc3362a980b6e1492e34ed31a
Deploy aaron-bond/xbox-clips to github.com/aaron-bond/xbox-clips.git:gh-pages
push time in 3 months
push eventaaron-bond/xbox-clips
commit sha cd14d103976ea3b2170e3129fd8256d6dd7f2637
adding clear search
push time in 3 months
push eventaaron-bond/trivia
Deployment Bot (from Travis CI)
commit sha 893af9f4b4701a778a810b4c81cd1b6cce62550d
Deploy aaron-bond/trivia to github.com/aaron-bond/trivia.git:gh-pages
push time in 3 months
push eventaaron-bond/trivia
commit sha 475a74748455f69b684c6572ef581a7802fe3d62
refactoring create and join to use routing
push time in 3 months
push eventaaron-bond/trivia
Deployment Bot (from Travis CI)
commit sha 2b0dacc9a8034f49ed0af0ce424a9d6069e4f701
Deploy aaron-bond/trivia to github.com/aaron-bond/trivia.git:gh-pages
push time in 3 months
push eventaaron-bond/trivia
commit sha fce42e3f62d73a3d239c2856794ae62ff2cb180c
Update shell.component.spec.ts
push time in 3 months
push eventaaron-bond/trivia
commit sha 9204c9bb269f88f23b43edb7f05ea5c1820324f7
Update shell.component.spec.ts
push time in 3 months
