Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
asein-sinch committed Oct 4, 2024
1 parent e9bae1f commit 8da4024
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Sinch",
"license": "Apache-2.0",
"scripts": {
"lint": "npx eslint ."
"lint": "npx eslint . --ignore-pattern eslint.config.mjs"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion snippets/sms/batches/send-text-message/snippet.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const execute = async (smsService) => {
to: [
recipient,
],
body: 'Hi $\{name}! Here is your discount code ${code}',
body: 'Hi ${name}! Here is your discount code ${code}',
parameters: {
name: {
[recipient]: 'John',
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
"skipLibCheck": true
},
"include": [
"**/*.js",
"eslint.config.mjs"
"**/*.js"
],
"exclude": [
"node_modules"
Expand Down

0 comments on commit 8da4024

Please sign in to comment.