Skip to content

Commit b5ed808

Browse files
authored
Merge pull request #62 from Service-Soft/update-to-angular-18
updated to angular 18
2 parents b69b9c0 + 57975be commit b5ed808

File tree

81 files changed

+15309
-12741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+15309
-12741
lines changed

.eslintrc.json

Lines changed: 0 additions & 103 deletions
This file was deleted.

cspell.words.txt

Whitespace-only changes.

eslint.config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const config = require('eslint-config-service-soft');
2+
3+
module.exports = [
4+
...config,
5+
{
6+
files: ['**/ngx-material-navigation/**/*.ts'],
7+
rules: {
8+
'angular/component-selector': [
9+
'warn',
10+
{
11+
style: 'kebab-case',
12+
type: 'element',
13+
prefix: 'ngx-mat-navigation'
14+
}
15+
]
16+
}
17+
}
18+
];

0 commit comments

Comments
 (0)