Skip to content
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

In this optimized code, objects within the globalProps array are defined without the quotation marks around the property keys. This maintains code consistency and readability. #1035

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[*]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
[*]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
28 changes: 14 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
build/
node_modules/
deps/librdkafka
npm-debug.log

docs

deps/*
!deps/*.gyp
!deps/windows-install.*

.DS_Store

.vscode
build/
node_modules/
deps/librdkafka
npm-debug.log
docs
deps/*
!deps/*.gyp
!deps/windows-install.*
.DS_Store
.vscode
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "deps/librdkafka"]
path = deps/librdkafka
url = https://github.com/edenhill/librdkafka.git
[submodule "deps/librdkafka"]
path = deps/librdkafka
url = https://github.com/edenhill/librdkafka.git
2 changes: 1 addition & 1 deletion .jshintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
README.md
README.md
46 changes: 23 additions & 23 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"node": true,
"mocha": true,
"browser": false,
"boss": true,
"curly": true,
"debug": false,
"devel": false,
"eqeqeq": true,
"evil": true,
"forin": false,
"latedef": false,
"noarg": true,
"nonew": true,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": true,
"strict": false,
"white": false,
"eqnull": true
}
{
"node": true,
"mocha": true,
"browser": false,
"boss": true,
"curly": true,
"debug": false,
"devel": false,
"eqeqeq": true,
"evil": true,
"forin": false,
"latedef": false,
"noarg": true,
"nonew": true,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": true,
"strict": false,
"white": false,
"eqnull": true
}
20 changes: 10 additions & 10 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
deps/*
!deps/librdkafka.gyp
!deps/librdkafka
!deps/windows-install.*
.gitmodules
Dockerfile
deps/librdkafka/config.h
build
.github
.vscode
deps/*
!deps/librdkafka.gyp
!deps/librdkafka
!deps/windows-install.*
.gitmodules
Dockerfile
deps/librdkafka/config.h
build
.github
.vscode
Loading