Skip to content

Commit

Permalink
Merge pull request #102 from dfa1234/update-angular-15
Browse files Browse the repository at this point in the history
update angular version and adding eslint
  • Loading branch information
dfa1234 authored Feb 14, 2023
2 parents e0fe90f + 7a97316 commit 62bbee6
Show file tree
Hide file tree
Showing 22 changed files with 12,553 additions and 9,400 deletions.
198 changes: 0 additions & 198 deletions .eslintrc.js

This file was deleted.

38 changes: 38 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"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": {
"@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"],
"rules": {}
}
]
}
2 changes: 1 addition & 1 deletion .github/workflows/publish-on-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: "Automated version bump for library"
uses: "phips28/gh-action-bump-version@master"
with:
tag-prefix: "lib-"
tag-prefix: ""
env:
PACKAGEJSON_DIR: "./projects/ngx-image-compress"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#680d09",
"activityBar.background": "#680d09",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#0a750f",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#680d09",
"statusBar.background": "#390705",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#680d09",
"statusBarItem.remoteBackground": "#390705",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#390705",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#39070599",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#390705"
}
Loading

0 comments on commit 62bbee6

Please sign in to comment.