Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Desktop.ini
# Node.js #
###########
/node_modules/
node_modules
lib/node_modules/**/node_modules/
docs/**/node_modules/
pids
Expand Down
2 changes: 2 additions & 0 deletions docs/style-guides/javascript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ Hopefully, most of the conventions outlined below will help enable you to do so.

- Even if you must use spaces, **never** mix tabs and spaces. This is formatting hell, as a simple find-and-replace is useless in the face of such chaos.

- For developers using the `@stdlib/regexp/whitespace` utility, note that it treats the NEL Unicode character (`\u0085`) as whitespace, unlike ECMAScript's `\s`. This may cause discrepancies in whitespace-sensitive code.

##### Enforcement

This project contains an [`.editorconfig`][editorconfig] file to be used in conjunction with IDE and/or browser plugins.
Expand Down
Loading