Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
add minor changes for source code using lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Sep 2, 2023
1 parent b8d7314 commit 0c10cde
Show file tree
Hide file tree
Showing 109 changed files with 2,393 additions and 2,664 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist/
node_modules
src/modules/adempiere-api/extensions/adempiere/grpc-api/grpc/
src/modules/adempiere-api/api/extensions/adempiere/grpc-api/grpc/proto
src/modules/adempiere-api/api/extensions/adempiere/grpc-api/utils/valueUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports = ({ config }: ExtensionAPIFunctionParameter) => {
tableName: req.query.table_name,
id: req.query.id,
uuid: req.query.uuid
}, function (err, response) {
}, (err, response) => {
if (response) {
res.json({
code: 200,
Expand Down Expand Up @@ -118,7 +118,7 @@ module.exports = ({ config }: ExtensionAPIFunctionParameter) => {
// Page Data
pageSize: req.query.page_size,
pageToken: req.query.page_token
}, function (err, response) {
}, (err, response) => {
if (response) {
res.json({
code: 200,
Expand Down Expand Up @@ -204,7 +204,7 @@ module.exports = ({ config }: ExtensionAPIFunctionParameter) => {
token: req.headers.authorization,
tableName: req.body.table_name,
attributes: req.body.attributes
}, function (err, response) {
}, (err, response) => {
if (response) {
res.json({
code: 200,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = ({ config }) => {
// Page Data
pageSize: req.query.page_size,
pageToken: req.query.page_token
}, function (err, response) {
}, (err, response) => {
if (response) {
res.json({
code: 200,
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
// GENERATED CODE -- NO SERVICES IN PROTO
// GENERATED CODE -- NO SERVICES IN PROTO
Loading

0 comments on commit 0c10cde

Please sign in to comment.