Install prettier, lint and lint-staged

This commit is contained in:
Ahmed Galadima
2024-03-15 17:29:38 +01:00
parent 1f66a2eaf0
commit 37be74006f
6 changed files with 1464 additions and 2 deletions

59
.eslintrc.json Normal file
View File

@@ -0,0 +1,59 @@
{
"root": true,
"ignorePatterns": ["projects/**/*"],
"overrides": [
{
"files": ["*.ts"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@typescript-eslint/no-explicit-any": ["off"],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
]
}
},
{
"files": ["*.html"],
"extends": [
"plugin:@angular-eslint/template/recommended",
"plugin:@angular-eslint/template/accessibility"
],
"rules": {}
},
{
"env": {
"node": true
},
"extends": "eslint:recommended",
"files": ["*js"],
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "single", { "allowTemplateLiterals": true }]
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "script"
}
}
]
}

4
.lintstagedrc.json Normal file
View File

@@ -0,0 +1,4 @@
{
"*.ts": ["ng-lint-staged lint --fix --"],
"*.{js,css,html,md}": ["eslint", "prettier --write"]
}

11
.prettierrc.json Normal file
View File

@@ -0,0 +1,11 @@
{
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"semi": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"bracketSameLine": true,
"printWidth": 80
}

View File

@@ -17,3 +17,10 @@ Run `ng build` to build the project. The build artifacts will be stored in the `
4. Initialize the repository: git init 4. Initialize the repository: git init
5. Create a new remote repository (example on git.talenttic.com) 5. Create a new remote repository (example on git.talenttic.com)
6. Push your changes to remote 6. Push your changes to remote
## TODO
1. Add admin template
2. Add frontend template
3. Add backend nodejs
4. Add .env file

1373
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,11 @@
"build": "ng build", "build": "ng build",
"watch": "ng build --watch --configuration development", "watch": "ng build --watch --configuration development",
"test": "ng test", "test": "ng test",
"serve:ssr:angular-starter-templates-admin": "node dist/angular-starter-templates-admin/server/server.mjs" "serve:ssr:angular-starter-templates-admin": "node dist/angular-starter-templates-admin/server/server.mjs",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"precommit": "lint-staged",
"lint:check": "concurrently \"ng lint --project=client\" \"ng lint --project=admin\""
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
@@ -33,12 +37,16 @@
"@types/express": "^4.17.17", "@types/express": "^4.17.17",
"@types/jasmine": "~5.1.0", "@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0", "@types/node": "^18.18.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jasmine-core": "~5.1.0", "jasmine-core": "~5.1.0",
"karma": "~6.4.0", "karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0", "karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0", "karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0", "karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "~5.3.2" "typescript": "~5.3.2"
} }
} }