@ronas-it/nx-generators 0.11.1 → 0.12.1
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/package.json +1 -1
- package/src/generators/code-checks/files/.eslint.ronasit.cjs.template +337 -0
- package/src/generators/code-checks/files/eslint.config.cjs.template +204 -0
- package/src/generators/code-checks/files/eslint.constraints.json.template +30 -0
- package/src/generators/code-checks/generator.js +1 -10
- package/src/generators/code-checks/generator.js.map +1 -1
- package/src/generators/code-checks/scripts.js +1 -1
- package/src/generators/code-checks/scripts.js.map +1 -1
- package/src/generators/lib-move/generator.js +5 -2
- package/src/generators/lib-move/generator.js.map +1 -1
- package/src/generators/lib-rename/generator.js +5 -1
- package/src/generators/lib-rename/generator.js.map +1 -1
- package/src/generators/lib-tags/generator.js +4 -12
- package/src/generators/lib-tags/generator.js.map +1 -1
- package/src/generators/lib-tags/interfaces/context.d.ts +0 -5
- package/src/generators/lib-tags/utils/check-lib-tags.js +4 -9
- package/src/generators/lib-tags/utils/check-lib-tags.js.map +1 -1
- package/src/shared/dependencies.d.ts +2 -0
- package/src/shared/dependencies.js +2 -0
- package/src/shared/dependencies.js.map +1 -1
- package/src/shared/templates/config-template.json +29 -41
- package/src/shared/utils/config-utils.d.ts +3 -11
- package/src/shared/utils/config-utils.js +57 -78
- package/src/shared/utils/config-utils.js.map +1 -1
- package/src/generators/code-checks/files/.eslint.ronasit.json.template +0 -183
- package/src/generators/code-checks/files/.eslintrc.json.template +0 -178
- package/src/generators/repo-config/files/.env.template +0 -1
|
@@ -1,183 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"env": {
|
|
4
|
-
"node": true
|
|
5
|
-
},
|
|
6
|
-
"parser": "@typescript-eslint/parser",
|
|
7
|
-
"parserOptions": {
|
|
8
|
-
"ecmaVersion": 6,
|
|
9
|
-
"project": "tsconfig.(base|lib).json",
|
|
10
|
-
"ecmaFeatures": {
|
|
11
|
-
"jsx": true
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"settings": {
|
|
15
|
-
"react": {
|
|
16
|
-
"version": "detect"
|
|
17
|
-
},
|
|
18
|
-
"react-native/style-sheet-object-names": ["EStyleSheet"],
|
|
19
|
-
"import/parsers": {
|
|
20
|
-
"@typescript-eslint/parser": [".ts", ".tsx"]
|
|
21
|
-
},
|
|
22
|
-
"import/resolver": {
|
|
23
|
-
"typescript": {
|
|
24
|
-
"alwaysTryTypes": true
|
|
25
|
-
},
|
|
26
|
-
"node": {
|
|
27
|
-
"extensions": [".js", ".jsx", ".ts", ".tsx"]
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"plugins": ["@typescript-eslint", "@stylistic", "unused-imports", "react", "react-hooks", "import"],
|
|
32
|
-
"extends": [
|
|
33
|
-
"eslint:recommended",
|
|
34
|
-
"plugin:@typescript-eslint/eslint-recommended",
|
|
35
|
-
"plugin:@typescript-eslint/recommended",
|
|
36
|
-
"plugin:react/recommended",
|
|
37
|
-
"prettier"
|
|
38
|
-
],
|
|
39
|
-
"rules": {
|
|
40
|
-
"@stylistic/indent": ["warn", 2, { "SwitchCase": 1 }],
|
|
41
|
-
"@stylistic/quotes": ["warn", "single", { "allowTemplateLiterals": true }],
|
|
42
|
-
"react/react-in-jsx-scope": "off",
|
|
43
|
-
"@stylistic/arrow-parens": ["warn", "always"],
|
|
44
|
-
"@stylistic/comma-dangle": ["warn", "never"],
|
|
45
|
-
"no-var": "warn",
|
|
46
|
-
"no-dupe-class-members": "off",
|
|
47
|
-
"import/prefer-default-export": "off",
|
|
48
|
-
"@stylistic/implicit-arrow-linebreak": ["warn", "beside"],
|
|
49
|
-
"@stylistic/newline-per-chained-call": ["warn", { "ignoreChainWithDepth": 2 }],
|
|
50
|
-
"@stylistic/function-call-argument-newline": ["warn", "consistent"],
|
|
51
|
-
"@stylistic/function-paren-newline": ["warn", "consistent"],
|
|
52
|
-
"@stylistic/array-element-newline": ["warn", "consistent"],
|
|
53
|
-
"@stylistic/array-bracket-newline": ["warn", { "multiline": true }],
|
|
54
|
-
"@stylistic/padding-line-between-statements": [
|
|
55
|
-
"warn",
|
|
56
|
-
{ "blankLine": "always", "prev": "*", "next": "return" },
|
|
57
|
-
{ "blankLine": "always", "prev": "*", "next": "multiline-block-like" }
|
|
58
|
-
],
|
|
59
|
-
"@typescript-eslint/no-use-before-define": ["warn", { "variables": false }],
|
|
60
|
-
"@stylistic/lines-between-class-members": ["warn", "always", { "exceptAfterSingleLine": true }],
|
|
61
|
-
"@typescript-eslint/no-inferrable-types": ["warn", { "ignoreParameters": true }],
|
|
62
|
-
"@typescript-eslint/explicit-module-boundary-types": ["warn", { "allowArgumentsExplicitlyTypedAsAny": true }],
|
|
63
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
64
|
-
"@typescript-eslint/explicit-member-accessibility": [
|
|
65
|
-
"warn",
|
|
66
|
-
{ "accessibility": "explicit", "overrides": { "constructors": "no-public" } }
|
|
67
|
-
],
|
|
68
|
-
"@typescript-eslint/explicit-function-return-type": ["warn", { "allowExpressions": true }],
|
|
69
|
-
"@typescript-eslint/no-require-imports": "off",
|
|
70
|
-
"@typescript-eslint/no-unused-vars": "off",
|
|
71
|
-
"@typescript-eslint/array-type": ["warn", { "default": "generic", "readonly": "generic" }],
|
|
72
|
-
"@typescript-eslint/member-ordering": [
|
|
73
|
-
"warn",
|
|
74
|
-
{
|
|
75
|
-
"default": [
|
|
76
|
-
"public-static-field",
|
|
77
|
-
"protected-static-field",
|
|
78
|
-
"private-static-field",
|
|
79
|
-
"public-instance-field",
|
|
80
|
-
"protected-instance-field",
|
|
81
|
-
"private-instance-field",
|
|
82
|
-
"public-static-accessor",
|
|
83
|
-
"protected-static-accessor",
|
|
84
|
-
"private-static-accessor",
|
|
85
|
-
"public-instance-accessor",
|
|
86
|
-
"protected-instance-accessor",
|
|
87
|
-
"private-instance-accessor",
|
|
88
|
-
"public-constructor",
|
|
89
|
-
"protected-constructor",
|
|
90
|
-
"private-constructor",
|
|
91
|
-
"public-static-method",
|
|
92
|
-
"public-instance-method",
|
|
93
|
-
"protected-static-method",
|
|
94
|
-
"protected-instance-method",
|
|
95
|
-
"private-static-method",
|
|
96
|
-
"private-instance-method"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
],
|
|
100
|
-
"@typescript-eslint/naming-convention": [
|
|
101
|
-
"warn",
|
|
102
|
-
{
|
|
103
|
-
"selector": "typeLike",
|
|
104
|
-
"format": ["PascalCase"]
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"selector": ["parameter"],
|
|
108
|
-
"format": ["camelCase", "PascalCase"],
|
|
109
|
-
"leadingUnderscore": "allow"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"selector": ["classProperty"],
|
|
113
|
-
"format": ["camelCase", "snake_case"],
|
|
114
|
-
"leadingUnderscore": "allow"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"selector": ["method", "accessor"],
|
|
118
|
-
"format": ["camelCase"]
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"selector": ["function", "typeProperty"],
|
|
122
|
-
"format": ["camelCase", "PascalCase"]
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"selector": "variable",
|
|
126
|
-
"format": ["camelCase", "PascalCase", "UPPER_CASE"]
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"selector": "enumMember",
|
|
130
|
-
"format": ["UPPER_CASE"]
|
|
131
|
-
}
|
|
132
|
-
],
|
|
133
|
-
"unused-imports/no-unused-imports": "warn",
|
|
134
|
-
"unused-imports/no-unused-vars": [
|
|
135
|
-
"warn",
|
|
136
|
-
{ "vars": "all", "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "ignoreRestSiblings": true }
|
|
137
|
-
],
|
|
138
|
-
"@stylistic/jsx-quotes": ["warn", "prefer-single"],
|
|
139
|
-
"react/jsx-boolean-value": "off",
|
|
140
|
-
"@stylistic/jsx-self-closing-comp": ["warn", { "component": true, "html": true }],
|
|
141
|
-
"@stylistic/jsx-max-props-per-line": [1, { "maximum": { "single": 2, "multi": 1 } }],
|
|
142
|
-
"@stylistic/jsx-first-prop-new-line": ["warn", "multiline"],
|
|
143
|
-
"react/prop-types": "off",
|
|
144
|
-
"react/jsx-fragments": ["warn", "element"],
|
|
145
|
-
"import/newline-after-import": "warn",
|
|
146
|
-
"import/no-unresolved": "error",
|
|
147
|
-
"import/no-cycle": "error",
|
|
148
|
-
"import/order": [
|
|
149
|
-
"warn",
|
|
150
|
-
{
|
|
151
|
-
"groups": ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"],
|
|
152
|
-
"alphabetize": { "order": "asc" }
|
|
153
|
-
}
|
|
154
|
-
],
|
|
155
|
-
"import/no-duplicates": "warn",
|
|
156
|
-
"react-hooks/exhaustive-deps": "off"
|
|
157
|
-
},
|
|
158
|
-
"overrides": [
|
|
159
|
-
{
|
|
160
|
-
"files": ["*.js"],
|
|
161
|
-
"rules": {
|
|
162
|
-
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
163
|
-
"@typescript-eslint/explicit-function-return-type": "off"
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"files": ["*actions.ts"],
|
|
168
|
-
"rules": {
|
|
169
|
-
"@stylistic/function-call-argument-newline": ["warn", "always"],
|
|
170
|
-
"@stylistic/function-paren-newline": ["warn", { "minItems": 1 }]
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"files": ["*selectors.ts"],
|
|
175
|
-
"rules": {
|
|
176
|
-
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
177
|
-
"@typescript-eslint/explicit-function-return-type": "off",
|
|
178
|
-
"@stylistic/function-call-argument-newline": ["warn", "always"],
|
|
179
|
-
"@stylistic/function-paren-newline": ["warn", "multiline-arguments"]
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
]
|
|
183
|
-
}
|
|
@@ -1,178 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"plugins": ["@nx"],
|
|
4
|
-
"extends": ["./.eslint.ronasit.json"],
|
|
5
|
-
"overrides": [
|
|
6
|
-
{
|
|
7
|
-
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
8
|
-
"rules": {
|
|
9
|
-
"@stylistic/array-bracket-newline": "off",
|
|
10
|
-
"@stylistic/array-bracket-spacing": "off",
|
|
11
|
-
"@stylistic/array-element-newline": "off",
|
|
12
|
-
"@stylistic/arrow-parens": "off",
|
|
13
|
-
"@stylistic/arrow-spacing": "off",
|
|
14
|
-
"@stylistic/block-spacing": "off",
|
|
15
|
-
"@stylistic/brace-style": "off",
|
|
16
|
-
"@stylistic/comma-dangle": "off",
|
|
17
|
-
"@stylistic/comma-spacing": "off",
|
|
18
|
-
"@stylistic/comma-style": "off",
|
|
19
|
-
"@stylistic/computed-property-spacing": "off",
|
|
20
|
-
"@stylistic/dot-location": "off",
|
|
21
|
-
"@stylistic/eol-last": "off",
|
|
22
|
-
"@stylistic/func-call-spacing": "off",
|
|
23
|
-
"@stylistic/function-call-argument-newline": "off",
|
|
24
|
-
"@stylistic/function-call-spacing": "off",
|
|
25
|
-
"@stylistic/function-paren-newline": "off",
|
|
26
|
-
"@stylistic/generator-star-spacing": "off",
|
|
27
|
-
"@stylistic/implicit-arrow-linebreak": "off",
|
|
28
|
-
"@stylistic/indent": "off",
|
|
29
|
-
"@stylistic/jsx-quotes": "off",
|
|
30
|
-
"@stylistic/key-spacing": "off",
|
|
31
|
-
"@stylistic/keyword-spacing": "off",
|
|
32
|
-
"@stylistic/linebreak-style": "off",
|
|
33
|
-
"@stylistic/max-statements-per-line": "off",
|
|
34
|
-
"@stylistic/multiline-ternary": "off",
|
|
35
|
-
"@stylistic/new-parens": "off",
|
|
36
|
-
"@stylistic/newline-per-chained-call": "off",
|
|
37
|
-
"@stylistic/no-extra-parens": "off",
|
|
38
|
-
"@stylistic/no-extra-semi": "off",
|
|
39
|
-
"@stylistic/no-floating-decimal": "off",
|
|
40
|
-
"@stylistic/no-mixed-spaces-and-tabs": "off",
|
|
41
|
-
"@stylistic/no-multi-spaces": "off",
|
|
42
|
-
"@stylistic/no-multiple-empty-lines": "off",
|
|
43
|
-
"@stylistic/no-trailing-spaces": "off",
|
|
44
|
-
"@stylistic/no-whitespace-before-property": "off",
|
|
45
|
-
"@stylistic/nonblock-statement-body-position": "off",
|
|
46
|
-
"@stylistic/object-curly-newline": "off",
|
|
47
|
-
"@stylistic/object-curly-spacing": "off",
|
|
48
|
-
"@stylistic/object-property-newline": "off",
|
|
49
|
-
"@stylistic/one-var-declaration-per-line": "off",
|
|
50
|
-
"@stylistic/operator-linebreak": "off",
|
|
51
|
-
"@stylistic/padded-blocks": "off",
|
|
52
|
-
"@stylistic/quote-props": "off",
|
|
53
|
-
"@stylistic/rest-spread-spacing": "off",
|
|
54
|
-
"@stylistic/semi": "off",
|
|
55
|
-
"@stylistic/semi-spacing": "off",
|
|
56
|
-
"@stylistic/semi-style": "off",
|
|
57
|
-
"@stylistic/space-before-blocks": "off",
|
|
58
|
-
"@stylistic/space-before-function-paren": "off",
|
|
59
|
-
"@stylistic/space-in-parens": "off",
|
|
60
|
-
"@stylistic/space-infix-ops": "off",
|
|
61
|
-
"@stylistic/space-unary-ops": "off",
|
|
62
|
-
"@stylistic/switch-colon-spacing": "off",
|
|
63
|
-
"@stylistic/template-curly-spacing": "off",
|
|
64
|
-
"@stylistic/template-tag-spacing": "off",
|
|
65
|
-
"@stylistic/wrap-iife": "off",
|
|
66
|
-
"@stylistic/wrap-regex": "off",
|
|
67
|
-
"@stylistic/yield-star-spacing": "off",
|
|
68
|
-
"@stylistic/member-delimiter-style": "off",
|
|
69
|
-
"@stylistic/type-annotation-spacing": "off",
|
|
70
|
-
"@stylistic/jsx-child-element-spacing": "off",
|
|
71
|
-
"@stylistic/jsx-closing-bracket-location": "off",
|
|
72
|
-
"@stylistic/jsx-closing-tag-location": "off",
|
|
73
|
-
"@stylistic/jsx-curly-newline": "off",
|
|
74
|
-
"@stylistic/jsx-curly-spacing": "off",
|
|
75
|
-
"@stylistic/jsx-equals-spacing": "off",
|
|
76
|
-
"@stylistic/jsx-first-prop-new-line": "off",
|
|
77
|
-
"@stylistic/jsx-indent": "off",
|
|
78
|
-
"@stylistic/jsx-indent-props": "off",
|
|
79
|
-
"@stylistic/jsx-max-props-per-line": "off",
|
|
80
|
-
"@stylistic/jsx-newline": "off",
|
|
81
|
-
"@stylistic/jsx-one-expression-per-line": "off",
|
|
82
|
-
"@stylistic/jsx-props-no-multi-spaces": "off",
|
|
83
|
-
"@stylistic/jsx-tag-spacing": "off",
|
|
84
|
-
"@stylistic/jsx-wrap-multilines": "off",
|
|
85
|
-
"@stylistic/indent-binary-ops": "off",
|
|
86
|
-
"@stylistic/type-generic-spacing": "off",
|
|
87
|
-
"@stylistic/type-named-tuple-spacing": "off",
|
|
88
|
-
"@stylistic/js/array-bracket-newline": "off",
|
|
89
|
-
"@stylistic/js/array-bracket-spacing": "off",
|
|
90
|
-
"@stylistic/js/array-element-newline": "off",
|
|
91
|
-
"@stylistic/js/arrow-parens": "off",
|
|
92
|
-
"@stylistic/js/arrow-spacing": "off",
|
|
93
|
-
"@stylistic/js/block-spacing": "off",
|
|
94
|
-
"@stylistic/js/brace-style": "off",
|
|
95
|
-
"@stylistic/js/comma-dangle": "off",
|
|
96
|
-
"@stylistic/js/comma-spacing": "off",
|
|
97
|
-
"@stylistic/js/comma-style": "off",
|
|
98
|
-
"@stylistic/js/computed-property-spacing": "off",
|
|
99
|
-
"@stylistic/js/dot-location": "off",
|
|
100
|
-
"@stylistic/js/eol-last": "off",
|
|
101
|
-
"@stylistic/js/func-call-spacing": "off",
|
|
102
|
-
"@stylistic/js/function-call-argument-newline": "off",
|
|
103
|
-
"@stylistic/js/function-call-spacing": "off",
|
|
104
|
-
"@stylistic/js/function-paren-newline": "off",
|
|
105
|
-
"@stylistic/js/generator-star-spacing": "off",
|
|
106
|
-
"@stylistic/js/implicit-arrow-linebreak": "off",
|
|
107
|
-
"@stylistic/js/indent": "off",
|
|
108
|
-
"@stylistic/js/jsx-quotes": "off",
|
|
109
|
-
"@stylistic/js/key-spacing": "off",
|
|
110
|
-
"@stylistic/js/keyword-spacing": "off",
|
|
111
|
-
"@stylistic/js/linebreak-style": "off",
|
|
112
|
-
"@stylistic/js/max-statements-per-line": "off",
|
|
113
|
-
"@stylistic/js/multiline-ternary": "off",
|
|
114
|
-
"@stylistic/js/new-parens": "off",
|
|
115
|
-
"@stylistic/js/newline-per-chained-call": "off",
|
|
116
|
-
"@stylistic/js/no-extra-parens": "off",
|
|
117
|
-
"@stylistic/js/no-extra-semi": "off",
|
|
118
|
-
"@stylistic/js/no-floating-decimal": "off",
|
|
119
|
-
"@stylistic/js/no-mixed-spaces-and-tabs": "off",
|
|
120
|
-
"@stylistic/js/no-multi-spaces": "off",
|
|
121
|
-
"@stylistic/js/no-multiple-empty-lines": "off",
|
|
122
|
-
"@stylistic/js/no-trailing-spaces": "off",
|
|
123
|
-
"@stylistic/js/no-whitespace-before-property": "off",
|
|
124
|
-
"@stylistic/js/nonblock-statement-body-position": "off",
|
|
125
|
-
"@stylistic/js/object-curly-newline": "off",
|
|
126
|
-
"@stylistic/js/object-curly-spacing": "off",
|
|
127
|
-
"@stylistic/js/object-property-newline": "off",
|
|
128
|
-
"@stylistic/js/one-var-declaration-per-line": "off",
|
|
129
|
-
"@stylistic/js/operator-linebreak": "off",
|
|
130
|
-
"@stylistic/js/padded-blocks": "off",
|
|
131
|
-
"@stylistic/js/quote-props": "off",
|
|
132
|
-
"@stylistic/js/rest-spread-spacing": "off",
|
|
133
|
-
"@stylistic/js/semi": "off",
|
|
134
|
-
"@stylistic/js/semi-spacing": "off",
|
|
135
|
-
"@stylistic/js/semi-style": "off",
|
|
136
|
-
"@stylistic/js/space-before-blocks": "off",
|
|
137
|
-
"@stylistic/js/space-before-function-paren": "off",
|
|
138
|
-
"@stylistic/js/space-in-parens": "off",
|
|
139
|
-
"@stylistic/js/space-infix-ops": "off",
|
|
140
|
-
"@stylistic/js/space-unary-ops": "off",
|
|
141
|
-
"@stylistic/js/switch-colon-spacing": "off",
|
|
142
|
-
"@stylistic/js/template-curly-spacing": "off",
|
|
143
|
-
"@stylistic/js/template-tag-spacing": "off",
|
|
144
|
-
"@stylistic/js/wrap-iife": "off",
|
|
145
|
-
"@stylistic/js/wrap-regex": "off",
|
|
146
|
-
"@stylistic/js/yield-star-spacing": "off",
|
|
147
|
-
"@stylistic/ts/block-spacing": "off",
|
|
148
|
-
"@stylistic/ts/brace-style": "off",
|
|
149
|
-
"@stylistic/ts/comma-dangle": "off",
|
|
150
|
-
"@stylistic/ts/comma-spacing": "off",
|
|
151
|
-
"@stylistic/ts/func-call-spacing": "off",
|
|
152
|
-
"@stylistic/ts/function-call-spacing": "off",
|
|
153
|
-
"@stylistic/ts/indent": "off",
|
|
154
|
-
"@stylistic/ts/key-spacing": "off",
|
|
155
|
-
"@stylistic/ts/keyword-spacing": "off",
|
|
156
|
-
"@stylistic/ts/member-delimiter-style": "off",
|
|
157
|
-
"@stylistic/ts/no-extra-parens": "off",
|
|
158
|
-
"@stylistic/ts/no-extra-semi": "off",
|
|
159
|
-
"@stylistic/ts/object-curly-spacing": "off",
|
|
160
|
-
"@stylistic/ts/semi": "off",
|
|
161
|
-
"@stylistic/ts/space-before-blocks": "off",
|
|
162
|
-
"@stylistic/ts/space-before-function-paren": "off",
|
|
163
|
-
"@stylistic/ts/space-infix-ops": "off",
|
|
164
|
-
"@stylistic/ts/type-annotation-spacing": "off",
|
|
165
|
-
"@stylistic/jsx/jsx-child-element-spacing": "off",
|
|
166
|
-
"@stylistic/jsx/jsx-closing-bracket-location": "off",
|
|
167
|
-
"@stylistic/jsx/jsx-closing-tag-location": "off",
|
|
168
|
-
"@stylistic/jsx/jsx-curly-newline": "off",
|
|
169
|
-
"@stylistic/jsx/jsx-curly-spacing": "off",
|
|
170
|
-
"@stylistic/jsx/jsx-equals-spacing": "off",
|
|
171
|
-
"@stylistic/jsx/jsx-first-prop-new-line": "off",
|
|
172
|
-
"@stylistic/jsx/jsx-indent": "off",
|
|
173
|
-
"@stylistic/jsx/jsx-indent-props": "off",
|
|
174
|
-
"@stylistic/jsx/jsx-max-props-per-line": "off"
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
]
|
|
178
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ESLINT_USE_FLAT_CONFIG=false
|