Skip to content

Commit

Permalink
fix(eslint): command line interface and some function update
Browse files Browse the repository at this point in the history
  • Loading branch information
mzrtamp committed Jul 18, 2024
1 parent 6e1201c commit 7c2d95c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint": "eslint . --ignore-pattern .gitignore",
"lint:fix": "npm run lint -- --fix",
"start": "node --es-module-specifier-resolution=node .",
"start:dev": "rimraf ./dist && npm run compile && npm start"
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ const hey = [
33
];

console.log(hey.map(x => String.fromCharCode(x)).join(""));
console.log(hey.map(x => String.fromCodePoint(x)).join(""));

0 comments on commit 7c2d95c

Please sign in to comment.