@tb-dev/eslint-config 5.0.0 → 5.0.2
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/LICENSE +21 -21
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 Andrew Ferreira
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Andrew Ferreira
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/index.cjs
CHANGED
|
@@ -188,7 +188,7 @@ async function vue(options) {
|
|
|
188
188
|
}],
|
|
189
189
|
"vue/component-api-style": ["error", ["script-setup"]],
|
|
190
190
|
"vue/component-definition-name-casing": ["error", "PascalCase"],
|
|
191
|
-
"vue/component-name-in-template-casing": ["error", "
|
|
191
|
+
"vue/component-name-in-template-casing": ["error", "PascalCase", {
|
|
192
192
|
registeredComponentsOnly: false
|
|
193
193
|
}],
|
|
194
194
|
"vue/custom-event-name-casing": ["error", "kebab-case"],
|
|
@@ -354,7 +354,7 @@ async function vue(options) {
|
|
|
354
354
|
"vue/html-self-closing": ["error", {
|
|
355
355
|
html: {
|
|
356
356
|
void: "never",
|
|
357
|
-
normal: "
|
|
357
|
+
normal: "any",
|
|
358
358
|
component: "always"
|
|
359
359
|
},
|
|
360
360
|
svg: "always",
|
package/dist/index.js
CHANGED
|
@@ -184,7 +184,7 @@ async function vue(options) {
|
|
|
184
184
|
}],
|
|
185
185
|
"vue/component-api-style": ["error", ["script-setup"]],
|
|
186
186
|
"vue/component-definition-name-casing": ["error", "PascalCase"],
|
|
187
|
-
"vue/component-name-in-template-casing": ["error", "
|
|
187
|
+
"vue/component-name-in-template-casing": ["error", "PascalCase", {
|
|
188
188
|
registeredComponentsOnly: false
|
|
189
189
|
}],
|
|
190
190
|
"vue/custom-event-name-casing": ["error", "kebab-case"],
|
|
@@ -350,7 +350,7 @@ async function vue(options) {
|
|
|
350
350
|
"vue/html-self-closing": ["error", {
|
|
351
351
|
html: {
|
|
352
352
|
void: "never",
|
|
353
|
-
normal: "
|
|
353
|
+
normal: "any",
|
|
354
354
|
component: "always"
|
|
355
355
|
},
|
|
356
356
|
svg: "always",
|