Skip to content

Initial support for Dash.jl component generation #1197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
50ddc99
add Julia keywords
Apr 10, 2020
4df1a7e
:sparkles: initial Julia component generator
Apr 15, 2020
3993289
:necktie: fix silly paren lint err
Apr 15, 2020
9edc07e
Merge branch 'dev' into 1189-julia-components
rpkyle Apr 30, 2020
41f0b26
Merge branch 'dev' into 1189-julia-components
rpkyle May 15, 2020
490e849
Julia packge generator
waralex May 15, 2020
dad9261
Merge branch 'dev' into 1189-julia-components
rpkyle May 18, 2020
d771176
Generate Project.toml for Dash.jl components (#1253)
waralex May 18, 2020
98af336
:necktie: linter fixes
May 18, 2020
ddaa3a3
:necktie: more linter fixes
May 18, 2020
429e86f
:see_no_evil: replace False with None
May 18, 2020
1a15907
:pencil2: s/noting_or_string/nothing_or_string/g
May 19, 2020
5b2edcd
:hocho: disable too many args
May 19, 2020
fd24e50
use Real
May 19, 2020
2e813bf
move newline to authors string
May 19, 2020
a532c92
Merge branch 'dev' into 1189-julia-components
rpkyle May 19, 2020
d5a5a1c
:necktie: try 20 lines similarity threshold
May 19, 2020
7eb5022
s/Float64/Real
May 21, 2020
19658a5
Merge branch '1189-julia-components' of https://github.com/plotly/das…
waralex Jun 9, 2020
ac65fe9
reverse Dash dependency
waralex Jun 12, 2020
650b9d3
naming fix
waralex Jun 16, 2020
0be806e
Merge pull request #1302 from waralex/1189-julia-components
alexcjohnson Jul 9, 2020
c7e7c03
Merge branch 'dev' into 1189-julia-components
alexcjohnson Jul 9, 2020
3e49165
lint _jl_components_generation
alexcjohnson Jul 9, 2020
439c8aa
minor component generator cleanup
alexcjohnson Jul 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions dash/development/_all_keywords.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,38 @@
"NA_character_",
"...",
}

# This is a set of Julia reserved words that cannot be used as function
# argument names.

julia_keywords = {
"baremodule",
"begin",
"break",
"catch",
"const",
"continue",
"do",
"else",
"elseif",
"end",
"export",
"false",
"finally",
"for",
"function",
"global",
"if",
"import",
"let",
"local",
"macro",
"module",
"quote",
"return",
"struct",
"true",
"try",
"using",
"while",
}
Loading