Skip to content

Commit d0487b2

Browse files
authored
Merge pull request #573 from les-projets-cagnottes/develop
Release 0.13.1
2 parents 1fa96e8 + dbcbb9a commit d0487b2

File tree

87 files changed

+9675
-4069
lines changed

Some content is hidden

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

87 files changed

+9675
-4069
lines changed

.eslintrc.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": [
4+
"projects/**/*",
5+
"dist/**"
6+
],
7+
"overrides": [
8+
{
9+
"files": [
10+
"*.ts"
11+
],
12+
"parserOptions": {
13+
"project": [
14+
"tsconfig.json",
15+
"e2e/tsconfig.json"
16+
],
17+
"createDefaultProgram": true
18+
},
19+
"extends": [
20+
"plugin:@angular-eslint/recommended",
21+
"plugin:@angular-eslint/template/process-inline-templates",
22+
"plugin:@typescript-eslint/eslint-recommended",
23+
"plugin:@typescript-eslint/recommended"
24+
],
25+
"rules": {
26+
"@angular-eslint/directive-selector": [
27+
"error",
28+
{
29+
"type": "attribute",
30+
"prefix": "app",
31+
"style": "camelCase"
32+
}
33+
],
34+
"@angular-eslint/component-selector": [
35+
"error",
36+
{
37+
"type": "element",
38+
"prefix": "app",
39+
"style": "kebab-case"
40+
}
41+
]
42+
}
43+
},
44+
{
45+
"files": [
46+
"*.html"
47+
],
48+
"extends": [
49+
"plugin:@angular-eslint/template/recommended"
50+
],
51+
"rules": {}
52+
}
53+
]
54+
}

README.md

-6
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ Navigate to `http://localhost:4200/`. The app will automatically reload if you c
4343

4444
### Debug locally in production mode
4545

46-
#### Create junction to serve images stored in `core` component
47-
48-
```cmd
49-
mklink /d dist\fr\img <core-directory>\files\img
50-
```
51-
5246
#### Build in production mode
5347

5448
```cmd

0 commit comments

Comments
 (0)