-
Notifications
You must be signed in to change notification settings - Fork 1
Pythons/angular 21 upgrade #278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
aeaedff
chore: prepare for Angular 21 upgrade - fix eslint version mismatch
so-kaushal c905a4b
chore: upgrade Angular 20 to Angular 21
so-kaushal 6c701a0
chore: bump version to 5.2.0-beta.0
so-kaushal aca182a
chore: update version to 6.0.0-beta.0 and adjust dependencies
so-kaushal f3e3e53
Merge branch 'qa' of github.com:scheduleonce/knowledgeowl-angular int…
so-kaushal 76df4ac
chore: update changelog format and fix eslint config formatting
so-kaushal 0ca2141
Initial plan
Copilot d51da71
docs: add 6.0.0-beta.0 changelog entry for Angular 21 / Node 24 / ESL…
Copilot d77cdd1
chore: update CI workflow to use matrix node version and adjust npm p…
so-kaushal fe373d6
chore: upgrade Node.js actions to v6 and bump package version to 6.0.…
so-kaushal 5dc2e27
chore: upgrade GitHub actions to v6 for checkout and setup-node
so-kaushal fac4de7
chore: update node-version format in CI workflow to array syntax
so-kaushal 4569b3a
Merge pull request #271 from scheduleonce/copilot/sub-pr-270
so-kaushal 84d4322
chore:ONCEHUB-112987 update version from 6.0.0-beta.1 to 6.0.0 in pac…
so-kaushal c5bae77
Merge branch 'qa' of github.com:scheduleonce/knowledgeowl-angular int…
so-kaushal 7ce8f3d
Update package.json
so-kaushal 8f4a606
chore: update changelog for Angular 21 upgrade release
so-kaushal f983220
Merge branch 'pythons/angular-21-upgrade' of github.com:scheduleonce/…
so-kaushal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| // @ts-check | ||
| const tseslint = require('typescript-eslint'); | ||
| const angular = require('angular-eslint'); | ||
|
|
||
| module.exports = tseslint.config( | ||
| { | ||
| ignores: ['projects/**/*'], | ||
| }, | ||
| { | ||
| files: ['**/*.ts'], | ||
| extends: [ | ||
| ...tseslint.configs.recommended, | ||
| ...tseslint.configs.recommendedTypeChecked, | ||
| ...angular.configs.tsRecommended, | ||
| ], | ||
| processor: angular.processInlineTemplates, | ||
| languageOptions: { | ||
| parserOptions: { | ||
| project: ['tsconfig.json'], | ||
| }, | ||
| }, | ||
| rules: { | ||
| '@angular-eslint/component-class-suffix': 'off', | ||
| '@angular-eslint/directive-class-suffix': 'off', | ||
| '@angular-eslint/prefer-standalone': 'off', | ||
| '@angular-eslint/prefer-inject': 'off', | ||
| '@angular-eslint/directive-selector': [ | ||
| 'error', | ||
| { | ||
| type: 'attribute', | ||
| prefix: ['knowledge'], | ||
| style: 'camelCase', | ||
| }, | ||
| ], | ||
| '@angular-eslint/component-selector': [ | ||
| 'error', | ||
| { | ||
| type: 'element', | ||
| prefix: ['knowledge'], | ||
| style: 'kebab-case', | ||
| }, | ||
| ], | ||
| '@typescript-eslint/consistent-type-definitions': 'error', | ||
| '@typescript-eslint/dot-notation': 'off', | ||
| '@typescript-eslint/no-floating-promises': 'off', | ||
| '@typescript-eslint/no-unsafe-return': 'off', | ||
| '@typescript-eslint/no-unsafe-assignment': 'off', | ||
| '@typescript-eslint/no-unsafe-member-access': 'off', | ||
| '@typescript-eslint/no-unsafe-call': 'off', | ||
| '@typescript-eslint/member-ordering': 'off', | ||
| '@typescript-eslint/explicit-member-accessibility': [ | ||
| 'off', | ||
| { | ||
| accessibility: 'explicit', | ||
| }, | ||
| ], | ||
| '@typescript-eslint/no-non-null-assertion': 'off', | ||
| '@typescript-eslint/no-use-before-define': 'off', | ||
| 'brace-style': ['error', '1tbs'], | ||
| complexity: 'error', | ||
| 'id-denylist': 'off', | ||
| 'id-match': 'off', | ||
| 'no-underscore-dangle': 'off', | ||
| 'no-useless-escape': 'off', | ||
| }, | ||
| }, | ||
| { | ||
| files: ['**/*.html'], | ||
| extends: [...angular.configs.templateRecommended], | ||
| rules: {}, | ||
| } | ||
| ); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.