Merge in TEA/mina-sidor-fa-web from feature/TV-851-digi-ng-layout-expansion-panel to develop
Squashed commit of the following:
commit 10b046bf603e1c5a79dd5c1129b2cdcddfe09424
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date: Tue Dec 7 09:18:35 2021 +0100
Fix PR comments
commit 3ca8e27699887c05d225b78c4ebad9c0c60f97f0
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date: Mon Dec 6 13:27:45 2021 +0100
correct PR comments and add better lintint to UI
commit 8d54902fcdad4503e9168a249ca47e39ab207f38
Merge: 1b202e6a 938014ab
Author: WP\holno <nikola.holst-nikolic@arbetsformedlingen.se>
Date: Thu Dec 2 10:51:21 2021 +0100
Merge branch 'develop' into feature/TV-851-digi-ng-layout-expansion-panel
commit 1b202e6a9dad961d45e1d0bb1dae766b2a927564
Author: WP\holno <nikola.holst-nikolic@arbetsformedlingen.se>
Date: Wed Dec 1 14:56:36 2021 +0100
Utfasning av digi-ng-expansion-panel till ui-expansion-panel.
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"extends": ["../../.eslintrc.json"],
|
|
"ignorePatterns": ["!**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts"],
|
|
"excludedFiles": ["*.spec.ts"],
|
|
"extends": [
|
|
"plugin:@nrwl/nx/angular",
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
"plugin:@angular-eslint/template/process-inline-templates"
|
|
],
|
|
"parserOptions": { "project": ["apps/mina-sidor-fa/tsconfig.*?.json"] },
|
|
"rules": {
|
|
"max-len": [
|
|
1,
|
|
140,
|
|
2,
|
|
{
|
|
"ignorePattern": "^import\\s.+\\sfrom\\s.+;$",
|
|
"ignoreUrls": true,
|
|
"ignoreStrings": true,
|
|
"ignoreRegExpLiterals": true
|
|
}
|
|
],
|
|
"@angular-eslint/directive-selector": [
|
|
"error",
|
|
{
|
|
"type": "attribute",
|
|
"prefix": "ui",
|
|
"style": "camelCase"
|
|
}
|
|
],
|
|
"@angular-eslint/component-selector": [
|
|
"error",
|
|
{
|
|
"type": "element",
|
|
"prefix": "ui",
|
|
"style": "kebab-case"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.html"],
|
|
"extends": ["plugin:@nrwl/nx/angular-template"],
|
|
"rules": {}
|
|
}
|
|
]
|
|
}
|