Add eslintignore and remove eslint from precommit hook (#168)

This commit is contained in:
Damian Stasik 2023-09-20 15:53:50 +02:00 committed by GitHub
parent 7144a70221
commit 2a616af4e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

2
.eslintignore Normal file
View file

@ -0,0 +1,2 @@
opentofu-repo
build

View file

@ -59,6 +59,6 @@
"lint-staged": "^14.0.1"
},
"lint-staged": {
"**/*": ["prettier --write --ignore-unknown", "npm run lint"]
"**/*": "prettier --write --ignore-unknown"
}
}