We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In src/lib/steps.ts, we define the output column name with at least 4 different names:
src/lib/steps.ts
newcolumn
new_column_name
newColumName
Let's pick a single one :).
The text was updated successfully, but these errors were encountered:
Here are my personal choices in decreasing order of preference:
new_column
The last one simply burns my eyes :)
Sorry, something went wrong.
As this is supposed to live in a js object and then stored as JSON, I recommend following the well-established convention of camelCase.
In Google JSON style guide:
Property names must be camel-cased, ascii strings. https://google.github.io/styleguide/jsoncstyleguide.xml?showone=Property_Name_Format#Property_Name_Format
Therefore, I suggest simply newColumn.
newColumn
+1 for newColum. We have to think about changing the related doc !
newColum
Successfully merging a pull request may close this issue.
In
src/lib/steps.ts
, we define the output column name with at least 4 different names:newcolumn
new_column_name
,newColumName
Let's pick a single one :).
The text was updated successfully, but these errors were encountered: