Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 9 additions & 2 deletions .browserslistrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,12 @@ Firefox ESR
not dead
not kaios 2.5
not op_mini all
# For IE 9-11 support, please uncomment the next line and adjust as needed
# IE 9-11
not and_qq 14.9
not and_uc 15.5
not android 141
not kaios 3.0-3.1
not op_mob 80
not opera 122
not opera 121
not samsung 28
not samsung 27
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# no support for lts as of now with github actions.
# issue link : https://github.com/actions/setup-node/issues/26
# lts/gallium node v19.7.0 (npm v9.5.0)
node-version: '22.9.0'
node-version: '22.12.0'

- name: Remove node_modules
run: rm -rf node_modules
Expand Down
2 changes: 1 addition & 1 deletion .htmlhintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"attr-lowercase": false,
"attr-value-double-quotes": true,
"tag-pair": true,
"spec-char-escape": true,
"spec-char-escape": false,
"id-unique": true,
"src-not-empty": true,
"attr-no-duplication": true,
Expand Down
24 changes: 24 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,30 @@
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
},
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
3 changes: 2 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ module.exports = [
style: 'camelCase',
type: 'attribute'
}
]
],
'@angular-eslint/prefer-inject': 'off'
}
},

Expand Down
Loading