-
Updated
Nov 21, 2020 - JavaScript
styleguide
Here are 765 public repositories matching this topic...
-
Updated
Nov 27, 2020 - JavaScript
-
Updated
Nov 27, 2020 - HTML
-
Updated
Nov 27, 2020 - SCSS
Current behavior
print warning message "did not recognize object of type "ChainExpression"" and can't show props & methods module in the demo page.
To reproduce
reactjs/react-docgen#463
High version babel and low version ast-types cause this problem
react-docgen update ast-types to ^0.14.2 to re
-
Updated
Nov 19, 2020 - Python
-
Updated
Jun 24, 2020
-
Updated
Aug 19, 2020 - Elixir
-
Updated
Sep 20, 2020
-
Updated
Jul 8, 2019
-
Updated
May 31, 2019
-
Updated
Oct 10, 2020 - HTML
-
Updated
Nov 27, 2020 - TypeScript
-
Updated
Nov 12, 2020
-
Updated
Oct 27, 2020 - JavaScript
One of the consumers of our system uses curly braces for content replacement in strings.
Due to the way that SD currently uses curly braces in the build process there is no way I can have a string that includes the braces for consumption.
I have tried a number of ways to escape the braces with no luck
Other languages and templating systems seem to use the concept of using double curly b
Rule request
Thesis
Detect if both possible results of a ternary operator return the same value.
# bad
# (all results below can be replaced by just `a`)
a if ... else a
a if a is not None else None
a if a != b else b
b if a == b else a
# ok
a if ... else c
a.split() if a is not None else None
a if a != b else c
Reasoning
It is either a bug or unnec
-
Updated
Nov 28, 2020 - HTML
-
Updated
Nov 3, 2020
-
Updated
Aug 7, 2020 - JavaScript
-
Updated
Nov 20, 2020 - Markdown
-
Updated
Nov 18, 2020 - Python
-
Updated
Aug 28, 2020 - HTML
-
Updated
Oct 7, 2018 - Ruby
-
Updated
Oct 24, 2019 - Ruby
Improve this page
Add a description, image, and links to the styleguide topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the styleguide topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe💯
In my component's props TS interface, I can use JSDoc comments to set the description, and can even use the
@default
tag to describe the default valueHowever, nothing happens when I use the
@deprecated
tag.Describe the solution you'd like
Some ideas: