Skip to content

Commit 2f99809

Browse files
committed
init version v5.0.0
1 parent 0c0ea57 commit 2f99809

Some content is hidden

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

49 files changed

+76
-3708
lines changed

.eslintrc.json

+30-23
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
{
2+
"root": true,
23
"parser": "@typescript-eslint/parser",
4+
"plugins": [
5+
"@typescript-eslint"
6+
],
37
"env": {
4-
"node": true,
5-
"jest": true,
6-
"es2021": true,
7-
"commonjs": true
8+
"node": true
89
},
910
"extends": [
10-
"eslint:recommended"
11-
],
12-
"parserOptions": {
13-
"ecmaVersion": 2021,
14-
"project": [
15-
"./tsconfig.json",
16-
"./jest.config.js"
17-
]
18-
},
19-
"plugins": [
20-
"@typescript-eslint"
11+
"eslint:recommended",
12+
"plugin:@typescript-eslint/recommended"
2113
],
2214
"rules": {
15+
"@typescript-eslint/array-type": [
16+
"error",
17+
{
18+
"default": "array-simple"
19+
}
20+
],
21+
"@typescript-eslint/consistent-type-imports": "error",
22+
"@typescript-eslint/no-unused-vars": [
23+
"error",
24+
{
25+
"argsIgnorePattern": "_"
26+
}
27+
],
2328
"no-undef": "off",
2429
"no-redeclare": "off",
2530
"padded-blocks": "off",
@@ -75,20 +80,18 @@
7580
2,
7681
"always"
7782
],
83+
"@typescript-eslint/no-explicit-any": "off",
7884
"@typescript-eslint/member-ordering": [
7985
"error",
8086
{
8187
"default": [
8288
// Fields
83-
"public-abstract-field",
8489
"public-static-field",
8590
"public-decorated-field",
8691
"public-instance-field",
87-
"protected-abstract-field",
8892
"protected-static-field",
8993
"protected-decorated-field",
9094
"protected-instance-field",
91-
"private-abstract-field",
9295
"private-static-field",
9396
"private-decorated-field",
9497
"private-instance-field",
@@ -100,22 +103,26 @@
100103
"public-static-method",
101104
"public-decorated-method",
102105
"public-instance-method",
103-
"public-abstract-method",
104106
"protected-static-method",
105107
"protected-decorated-method",
106108
"protected-instance-method",
107-
"protected-abstract-method",
108109
"private-static-method",
109110
"private-decorated-method",
110-
"private-instance-method",
111-
"private-abstract-method"
111+
"private-instance-method"
112112
]
113113
}
114114
]
115115
},
116+
"overrides": [
117+
{
118+
"files": "*.json",
119+
"parser": "jsonc-eslint-parser",
120+
"rules": {}
121+
}
122+
],
116123
"ignorePatterns": [
117124
"**/*.js",
118-
"**/*.spec.ts",
125+
"docs/*",
119126
"src/specs/*",
120127
"src/assets/*"
121128
]

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ yarn-error.log
2020
.settings/
2121
*.sublime-workspace
2222

23-
# IDE
23+
# Visual Studio Code
2424
.vscode/*
2525
!.vscode/settings.json
2626
!.vscode/tasks.json
2727
!.vscode/launch.json
2828
!.vscode/extensions.json
2929
.history/*
30-
.idea/*
3130

3231
# Miscellaneous
3332
/.angular/cache
@@ -37,6 +36,7 @@ yarn-error.log
3736
/libpeerconnection.log
3837
testem.log
3938
/typings
39+
coverage
4040

4141
# System files
4242
.DS_Store

angular.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@
3939
}
4040
}
4141
},
42-
"defaultProject": "@angular-redux2/store",
4342
"cli": {
44-
"defaultCollection": "@angular-eslint/schematics"
43+
"schematicCollections": [
44+
"@angular-eslint/schematics"
45+
]
4546
}
4647
}

articles/fractal-store.md

-137
This file was deleted.

0 commit comments

Comments
 (0)