feat: add eslint config and ignore files

This commit is contained in:
2026-05-18 01:55:53 +03:00
commit 089f1a6ba1
8 changed files with 4973 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "my-ci-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"jest --findRelatedTests"
]
}
}