@chris.araneo/eslint-config 0.0.41 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -145
- package/dist/index.js.map +1 -1
- package/dist/src/angular.js +41 -0
- package/dist/src/angular.js.map +1 -0
- package/dist/src/json.js +20 -0
- package/dist/src/json.js.map +1 -0
- package/dist/src/typescript.js +124 -0
- package/dist/src/typescript.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import eslint from '@eslint/js';
|
|
2
1
|
import tseslint from 'typescript-eslint';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import jsoncParser from 'jsonc-eslint-parser';
|
|
7
|
-
import unicorn from 'eslint-plugin-unicorn';
|
|
8
|
-
import globals from 'globals';
|
|
2
|
+
import createJsonConfigs from './src/json.js';
|
|
3
|
+
import createAngularConfigs from './src/angular.js';
|
|
4
|
+
import { createTypeScriptConfigs, createTypeScriptTestsConfigs, } from './src/typescript.js';
|
|
9
5
|
const DEFAULT_IGNORED_FILES = [
|
|
10
6
|
'node_modules/',
|
|
11
7
|
'reports/',
|
|
@@ -14,144 +10,8 @@ const DEFAULT_IGNORED_FILES = [
|
|
|
14
10
|
'package.json',
|
|
15
11
|
'package-lock.json',
|
|
16
12
|
];
|
|
17
|
-
export default (jsons = [], sources = [], templates = [], ignored) => {
|
|
18
|
-
return tseslint.config(...
|
|
19
|
-
files: jsons,
|
|
20
|
-
languageOptions: {
|
|
21
|
-
parser: jsoncParser,
|
|
22
|
-
},
|
|
23
|
-
rules: {
|
|
24
|
-
'jsonc/no-comments': 'error',
|
|
25
|
-
'jsonc/sort-keys': 'error',
|
|
26
|
-
'jsonc/valid-json-number': 'error',
|
|
27
|
-
'jsonc/no-dupe-keys': 'error',
|
|
28
|
-
},
|
|
29
|
-
}, {
|
|
30
|
-
files: sources,
|
|
31
|
-
extends: [eslint.configs.all, ...tseslint.configs.all],
|
|
32
|
-
languageOptions: {
|
|
33
|
-
parserOptions: {
|
|
34
|
-
projectService: true,
|
|
35
|
-
tsconfigRootDir: import.meta.dirname,
|
|
36
|
-
},
|
|
37
|
-
},
|
|
38
|
-
rules: {
|
|
39
|
-
'@typescript-eslint/explicit-member-accessibility': [
|
|
40
|
-
'error',
|
|
41
|
-
{
|
|
42
|
-
accessibility: 'no-public',
|
|
43
|
-
},
|
|
44
|
-
],
|
|
45
|
-
'@typescript-eslint/init-declarations': 'off',
|
|
46
|
-
'@typescript-eslint/no-extraneous-class': 'off',
|
|
47
|
-
'@typescript-eslint/parameter-properties': 'off',
|
|
48
|
-
'@typescript-eslint/consistent-type-imports': 'off',
|
|
49
|
-
'@typescript-eslint/no-confusing-void-expression': 'off',
|
|
50
|
-
'@typescript-eslint/class-methods-use-this': 'off',
|
|
51
|
-
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
|
|
52
|
-
'@typescript-eslint/strict-boolean-expressions': 'off',
|
|
53
|
-
'@typescript-eslint/member-ordering': [
|
|
54
|
-
'error',
|
|
55
|
-
{
|
|
56
|
-
default: {
|
|
57
|
-
memberTypes: [
|
|
58
|
-
'public-decorated-field',
|
|
59
|
-
'protected-decorated-field',
|
|
60
|
-
'private-decorated-field',
|
|
61
|
-
'public-static-field',
|
|
62
|
-
'protected-static-field',
|
|
63
|
-
'private-static-field',
|
|
64
|
-
'public-instance-field',
|
|
65
|
-
'protected-instance-field',
|
|
66
|
-
'private-instance-field',
|
|
67
|
-
'static-field',
|
|
68
|
-
'public-field',
|
|
69
|
-
'instance-field',
|
|
70
|
-
'protected-field',
|
|
71
|
-
'private-field',
|
|
72
|
-
'constructor',
|
|
73
|
-
'public-static-method',
|
|
74
|
-
'protected-static-method',
|
|
75
|
-
'private-static-method',
|
|
76
|
-
'public-method',
|
|
77
|
-
'protected-method',
|
|
78
|
-
'private-method',
|
|
79
|
-
],
|
|
80
|
-
},
|
|
81
|
-
},
|
|
82
|
-
],
|
|
83
|
-
'@typescript-eslint/naming-convention': [
|
|
84
|
-
'error',
|
|
85
|
-
{
|
|
86
|
-
selector: 'enumMember',
|
|
87
|
-
format: ['PascalCase'],
|
|
88
|
-
},
|
|
89
|
-
],
|
|
90
|
-
'new-cap': 'off',
|
|
91
|
-
'no-duplicate-imports': 'off',
|
|
92
|
-
'one-var': 'off',
|
|
93
|
-
'sort-imports': 'off',
|
|
94
|
-
'sort-keys': 'off',
|
|
95
|
-
'sort-vars': 'off',
|
|
96
|
-
'no-ternary': 'off',
|
|
97
|
-
'id-length': 'off',
|
|
98
|
-
'no-warning-comments': 'off',
|
|
99
|
-
'no-underscore-dangle': 'off',
|
|
100
|
-
},
|
|
101
|
-
}, {
|
|
102
|
-
files: sources,
|
|
103
|
-
extends: [...angular.configs.tsAll],
|
|
104
|
-
processor: angular.processInlineTemplates,
|
|
105
|
-
rules: {
|
|
106
|
-
'@angular-eslint/component-selector': [
|
|
107
|
-
'error',
|
|
108
|
-
{
|
|
109
|
-
prefix: 'app',
|
|
110
|
-
style: 'kebab-case',
|
|
111
|
-
type: 'element',
|
|
112
|
-
},
|
|
113
|
-
],
|
|
114
|
-
'@angular-eslint/directive-selector': [
|
|
115
|
-
'error',
|
|
116
|
-
{
|
|
117
|
-
prefix: 'app',
|
|
118
|
-
style: 'camelCase',
|
|
119
|
-
type: 'attribute',
|
|
120
|
-
},
|
|
121
|
-
],
|
|
122
|
-
'@angular-eslint/prefer-on-push-component-change-detection': 'off',
|
|
123
|
-
'@angular-eslint/prefer-signals': 'off',
|
|
124
|
-
'@angular-eslint/prefer-output-emitter-ref': 'off',
|
|
125
|
-
'@angular-eslint/no-forward-ref': 'off',
|
|
126
|
-
},
|
|
127
|
-
}, {
|
|
128
|
-
languageOptions: {
|
|
129
|
-
globals: globals.builtin,
|
|
130
|
-
},
|
|
131
|
-
extends: [unicorn.configs.all],
|
|
132
|
-
rules: {
|
|
133
|
-
'unicorn/prevent-abbreviations': 'off',
|
|
134
|
-
'unicorn/prefer-global-this': 'off',
|
|
135
|
-
'unicorn/no-null': 'off',
|
|
136
|
-
'unicorn/template-indent': 'off',
|
|
137
|
-
},
|
|
138
|
-
}, {
|
|
139
|
-
files: sources,
|
|
140
|
-
plugins: {
|
|
141
|
-
'simple-import-sort': simpleImportSort,
|
|
142
|
-
},
|
|
143
|
-
rules: {
|
|
144
|
-
'simple-import-sort/exports': 'error',
|
|
145
|
-
'simple-import-sort/imports': 'error',
|
|
146
|
-
},
|
|
147
|
-
}, {
|
|
148
|
-
files: templates,
|
|
149
|
-
extends: [...angular.configs.templateAll],
|
|
150
|
-
rules: {
|
|
151
|
-
'@angular-eslint/template/prefer-control-flow': 'off',
|
|
152
|
-
'@angular-eslint/template/i18n': 'off',
|
|
153
|
-
},
|
|
154
|
-
}, {
|
|
13
|
+
export default (jsons = [], sources = [], tests = [], templates = [], ignored) => {
|
|
14
|
+
return tseslint.config(...createJsonConfigs(jsons), ...createAngularConfigs(sources, templates), ...createTypeScriptConfigs(sources), ...createTypeScriptTestsConfigs(tests), {
|
|
155
15
|
ignores: ignored || DEFAULT_IGNORED_FILES,
|
|
156
16
|
});
|
|
157
17
|
};
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,mBAAmB,CAAC;AACzC,OAAO,iBAAiB,MAAM,eAAe,CAAC;AAC9C,OAAO,oBAAoB,MAAM,kBAAkB,CAAC;AACpD,OAAO,EACL,uBAAuB,EACvB,4BAA4B,GAC7B,MAAM,qBAAqB,CAAC;AAE7B,MAAM,qBAAqB,GAAG;IAC5B,eAAe;IACf,UAAU;IACV,eAAe;IACf,UAAU;IACV,cAAc;IACd,mBAAmB;CACpB,CAAC;AAEF,eAAe,CACb,QAAkB,EAAE,EACpB,UAAoB,EAAE,EACtB,QAAkB,EAAE,EACpB,YAAsB,EAAE,EACxB,OAAiB,EACjB,EAAE;IACF,OAAO,QAAQ,CAAC,MAAM,CACpB,GAAG,iBAAiB,CAAC,KAAK,CAAC,EAC3B,GAAG,oBAAoB,CAAC,OAAO,EAAE,SAAS,CAAC,EAC3C,GAAG,uBAAuB,CAAC,OAAO,CAAC,EACnC,GAAG,4BAA4B,CAAC,KAAK,CAAC,EACtC;QACE,OAAO,EAAE,OAAO,IAAI,qBAAqB;KAC1C,CACF,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import angular from 'angular-eslint';
|
|
2
|
+
export default (sources = [], templates = []) => {
|
|
3
|
+
return [
|
|
4
|
+
{
|
|
5
|
+
files: sources,
|
|
6
|
+
extends: [...angular.configs.tsAll],
|
|
7
|
+
processor: angular.processInlineTemplates,
|
|
8
|
+
rules: {
|
|
9
|
+
'@angular-eslint/component-selector': [
|
|
10
|
+
'error',
|
|
11
|
+
{
|
|
12
|
+
prefix: 'app',
|
|
13
|
+
style: 'kebab-case',
|
|
14
|
+
type: 'element',
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
'@angular-eslint/directive-selector': [
|
|
18
|
+
'error',
|
|
19
|
+
{
|
|
20
|
+
prefix: 'app',
|
|
21
|
+
style: 'camelCase',
|
|
22
|
+
type: 'attribute',
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
'@angular-eslint/prefer-on-push-component-change-detection': 'off',
|
|
26
|
+
'@angular-eslint/prefer-signals': 'off',
|
|
27
|
+
'@angular-eslint/prefer-output-emitter-ref': 'off',
|
|
28
|
+
'@angular-eslint/no-forward-ref': 'off',
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
files: templates,
|
|
33
|
+
extends: [...angular.configs.templateAll],
|
|
34
|
+
rules: {
|
|
35
|
+
'@angular-eslint/template/prefer-control-flow': 'off',
|
|
36
|
+
'@angular-eslint/template/i18n': 'off',
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
];
|
|
40
|
+
};
|
|
41
|
+
//# sourceMappingURL=angular.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"angular.js","sourceRoot":"/","sources":["src/angular.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAGrC,eAAe,CACb,UAAoB,EAAE,EACtB,YAAsB,EAAE,EACU,EAAE;IACpC,OAAO;QACL;YACE,KAAK,EAAE,OAAO;YACd,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC;YACnC,SAAS,EAAE,OAAO,CAAC,sBAAsB;YACzC,KAAK,EAAE;gBACL,oCAAoC,EAAE;oBACpC,OAAO;oBACP;wBACE,MAAM,EAAE,KAAK;wBACb,KAAK,EAAE,YAAY;wBACnB,IAAI,EAAE,SAAS;qBAChB;iBACF;gBACD,oCAAoC,EAAE;oBACpC,OAAO;oBACP;wBACE,MAAM,EAAE,KAAK;wBACb,KAAK,EAAE,WAAW;wBAClB,IAAI,EAAE,WAAW;qBAClB;iBACF;gBACD,2DAA2D,EAAE,KAAK;gBAClE,gCAAgC,EAAE,KAAK;gBACvC,2CAA2C,EAAE,KAAK;gBAClD,gCAAgC,EAAE,KAAK;aACxC;SACF;QACD;YACE,KAAK,EAAE,SAAS;YAChB,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;YACzC,KAAK,EAAE;gBACL,8CAA8C,EAAE,KAAK;gBACrD,+BAA+B,EAAE,KAAK;aACvC;SACF;KACF,CAAC;AACJ,CAAC,CAAC"}
|
package/dist/src/json.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import jsonc from 'eslint-plugin-jsonc';
|
|
2
|
+
import jsoncParser from 'jsonc-eslint-parser';
|
|
3
|
+
export default (jsons = []) => {
|
|
4
|
+
return [
|
|
5
|
+
...jsonc.configs['flat/recommended-with-jsonc'],
|
|
6
|
+
{
|
|
7
|
+
files: jsons,
|
|
8
|
+
languageOptions: {
|
|
9
|
+
parser: jsoncParser,
|
|
10
|
+
},
|
|
11
|
+
rules: {
|
|
12
|
+
'jsonc/no-comments': 'error',
|
|
13
|
+
'jsonc/sort-keys': 'error',
|
|
14
|
+
'jsonc/valid-json-number': 'error',
|
|
15
|
+
'jsonc/no-dupe-keys': 'error',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
];
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=json.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"json.js","sourceRoot":"/","sources":["src/json.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,qBAAqB,CAAC;AACxC,OAAO,WAAW,MAAM,qBAAqB,CAAC;AAG9C,eAAe,CAAC,QAAkB,EAAE,EAAoC,EAAE;IACxE,OAAO;QACL,GAAG,KAAK,CAAC,OAAO,CAAC,6BAA6B,CAAC;QAC/C;YACE,KAAK,EAAE,KAAK;YACZ,eAAe,EAAE;gBACf,MAAM,EAAE,WAAW;aACpB;YACD,KAAK,EAAE;gBACL,mBAAmB,EAAE,OAAO;gBAC5B,iBAAiB,EAAE,OAAO;gBAC1B,yBAAyB,EAAE,OAAO;gBAClC,oBAAoB,EAAE,OAAO;aAC9B;SACF;KACF,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import eslint from '@eslint/js';
|
|
2
|
+
import tseslint from 'typescript-eslint';
|
|
3
|
+
import simpleImportSort from 'eslint-plugin-simple-import-sort';
|
|
4
|
+
import unicorn from 'eslint-plugin-unicorn';
|
|
5
|
+
import globals from 'globals';
|
|
6
|
+
const createConfigs = (sources = [], isTests = false) => {
|
|
7
|
+
const errorWhenNotTests = !isTests ? 'error' : 'off';
|
|
8
|
+
return [
|
|
9
|
+
{
|
|
10
|
+
files: sources,
|
|
11
|
+
extends: [eslint.configs.all, ...tseslint.configs.all],
|
|
12
|
+
languageOptions: {
|
|
13
|
+
parserOptions: {
|
|
14
|
+
projectService: true,
|
|
15
|
+
tsconfigRootDir: import.meta.dirname,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
rules: {
|
|
19
|
+
'@typescript-eslint/explicit-member-accessibility': [
|
|
20
|
+
'error',
|
|
21
|
+
{
|
|
22
|
+
accessibility: 'no-public',
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
'@typescript-eslint/init-declarations': 'off',
|
|
26
|
+
'@typescript-eslint/no-extraneous-class': 'off',
|
|
27
|
+
'@typescript-eslint/parameter-properties': 'off',
|
|
28
|
+
'@typescript-eslint/consistent-type-imports': 'off',
|
|
29
|
+
'@typescript-eslint/no-confusing-void-expression': 'off',
|
|
30
|
+
'@typescript-eslint/class-methods-use-this': 'off',
|
|
31
|
+
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
|
|
32
|
+
'@typescript-eslint/strict-boolean-expressions': 'off',
|
|
33
|
+
'@typescript-eslint/no-unsafe-type-assertion': 'warn',
|
|
34
|
+
'@typescript-eslint/no-non-null-assertion': errorWhenNotTests,
|
|
35
|
+
'@typescript-eslint/no-magic-numbers': errorWhenNotTests,
|
|
36
|
+
'@typescript-eslint/no-unsafe-return': errorWhenNotTests,
|
|
37
|
+
'@typescript-eslint/no-unsafe-function-type': errorWhenNotTests,
|
|
38
|
+
'@typescript-eslint/no-unsafe-call': errorWhenNotTests,
|
|
39
|
+
'@typescript-eslint/no-unsafe-member-access': errorWhenNotTests,
|
|
40
|
+
'@typescript-eslint/no-unsafe-assignment': errorWhenNotTests,
|
|
41
|
+
'@typescript-eslint/no-explicit-any': errorWhenNotTests,
|
|
42
|
+
'max-lines-per-function': errorWhenNotTests,
|
|
43
|
+
'@typescript-eslint/prefer-destructuring': errorWhenNotTests,
|
|
44
|
+
'@typescript-eslint/member-ordering': [
|
|
45
|
+
'error',
|
|
46
|
+
{
|
|
47
|
+
default: {
|
|
48
|
+
memberTypes: [
|
|
49
|
+
'public-decorated-field',
|
|
50
|
+
'protected-decorated-field',
|
|
51
|
+
'private-decorated-field',
|
|
52
|
+
'public-static-field',
|
|
53
|
+
'protected-static-field',
|
|
54
|
+
'private-static-field',
|
|
55
|
+
'public-instance-field',
|
|
56
|
+
'protected-instance-field',
|
|
57
|
+
'private-instance-field',
|
|
58
|
+
'static-field',
|
|
59
|
+
'public-field',
|
|
60
|
+
'instance-field',
|
|
61
|
+
'protected-field',
|
|
62
|
+
'private-field',
|
|
63
|
+
'constructor',
|
|
64
|
+
'public-static-method',
|
|
65
|
+
'protected-static-method',
|
|
66
|
+
'private-static-method',
|
|
67
|
+
'public-method',
|
|
68
|
+
'protected-method',
|
|
69
|
+
'private-method',
|
|
70
|
+
],
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
'@typescript-eslint/naming-convention': [
|
|
75
|
+
'error',
|
|
76
|
+
{
|
|
77
|
+
selector: 'enumMember',
|
|
78
|
+
format: ['PascalCase'],
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
'new-cap': 'off',
|
|
82
|
+
'no-duplicate-imports': 'off',
|
|
83
|
+
'one-var': 'off',
|
|
84
|
+
'sort-imports': 'off',
|
|
85
|
+
'sort-keys': 'off',
|
|
86
|
+
'sort-vars': 'off',
|
|
87
|
+
'no-ternary': 'off',
|
|
88
|
+
'id-length': 'off',
|
|
89
|
+
'no-warning-comments': 'off',
|
|
90
|
+
'no-underscore-dangle': 'off',
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
files: sources,
|
|
95
|
+
languageOptions: {
|
|
96
|
+
globals: globals.builtin,
|
|
97
|
+
},
|
|
98
|
+
extends: [unicorn.configs.all],
|
|
99
|
+
rules: {
|
|
100
|
+
'unicorn/prevent-abbreviations': 'off',
|
|
101
|
+
'unicorn/prefer-global-this': 'off',
|
|
102
|
+
'unicorn/no-null': 'off',
|
|
103
|
+
'unicorn/template-indent': 'off',
|
|
104
|
+
},
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
files: sources,
|
|
108
|
+
plugins: {
|
|
109
|
+
'simple-import-sort': simpleImportSort,
|
|
110
|
+
},
|
|
111
|
+
rules: {
|
|
112
|
+
'simple-import-sort/exports': 'error',
|
|
113
|
+
'simple-import-sort/imports': 'error',
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
];
|
|
117
|
+
};
|
|
118
|
+
export const createTypeScriptConfigs = (sources = []) => {
|
|
119
|
+
return createConfigs(sources, false);
|
|
120
|
+
};
|
|
121
|
+
export const createTypeScriptTestsConfigs = (sources = []) => {
|
|
122
|
+
return createConfigs(sources, true);
|
|
123
|
+
};
|
|
124
|
+
//# sourceMappingURL=typescript.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"typescript.js","sourceRoot":"/","sources":["src/typescript.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../index.ts"],"version":"5.8.3"}
|
|
1
|
+
{"root":["../index.ts","../src/angular.ts","../src/json.ts","../src/typescript.ts"],"version":"5.8.3"}
|