Skip to content

Commit

Permalink
Fix precommit hook
Browse files Browse the repository at this point in the history
  • Loading branch information
DemianParkhomenko committed Sep 7, 2023
1 parent 46f9531 commit d6009a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: "weekly"
interval: 'weekly'
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"semi": true,
"semi": false,
"trailingComma": "es5",
"singleQuote": true
}
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
console.log('Learn Node.js with fun🤪');
console.log('Dima the best');
console.log('Learn Node.js with fun🤪')
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint"
]
"*": "prettier --write --ignore-unknown",
"*.js": "eslint",
"*.ts": "eslint"
},
"author": "",
"license": "MIT",
Expand Down

0 comments on commit d6009a5

Please sign in to comment.