eslint-plugin-turmag-special-rules 0.0.6 → 1.0.0
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/README.md
CHANGED
|
@@ -27,12 +27,12 @@ pnpm add eslint-plugin-turmag-special-rules --save-dev
|
|
|
27
27
|
In your [configuration file](https://eslint.org/docs/latest/use/configure/configuration-files#configuration-file), import the plugin `eslint-plugin-turmag-special-rules` and add `turmagEslintSpecialRules` to the `plugins` key:
|
|
28
28
|
|
|
29
29
|
```js
|
|
30
|
-
import
|
|
30
|
+
import turmagSpecialRules from "eslint-plugin-turmag-special-rules";
|
|
31
31
|
|
|
32
32
|
export default [
|
|
33
33
|
{
|
|
34
34
|
plugins: {
|
|
35
|
-
|
|
35
|
+
'turmag-special-rules': turmagSpecialRules
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
];
|
|
@@ -42,15 +42,15 @@ export default [
|
|
|
42
42
|
Then configure the rules you want to use under the `rules` key.
|
|
43
43
|
|
|
44
44
|
```js
|
|
45
|
-
import
|
|
45
|
+
import turmagSpecialRules from "eslint-plugin-turmag-special-rules";
|
|
46
46
|
|
|
47
47
|
export default [
|
|
48
48
|
{
|
|
49
49
|
plugins: {
|
|
50
|
-
|
|
50
|
+
'turmag-special-rules': turmagSpecialRules
|
|
51
51
|
},
|
|
52
52
|
rules: {
|
|
53
|
-
"
|
|
53
|
+
"turmag-special-rules/rule-name": "warn"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
];
|
|
@@ -68,18 +68,18 @@ TODO: Run eslint-doc-generator to generate the configs list (or delete this sect
|
|
|
68
68
|
|
|
69
69
|
## Rules
|
|
70
70
|
|
|
71
|
-
<!-- begin auto-generated rules list -->
|
|
72
|
-
|
|
73
|
-
🔧 Automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).
|
|
74
|
-
|
|
71
|
+
<!-- begin auto-generated rules list -->
|
|
72
|
+
|
|
73
|
+
🔧 Automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).
|
|
74
|
+
|
|
75
75
|
| Name | Description | 🔧 |
|
|
76
76
|
| :----------------------------------------------------------------------------------- | :------------------------------------------------------------- | :- |
|
|
77
77
|
| [add-vue-extension](docs/rules/add-vue-extension.md) | Require .vue in vue files | 🔧 |
|
|
78
78
|
| [import-entities-by-column-or-line](docs/rules/import-entities-by-column-or-line.md) | Prefered column or line import | 🔧 |
|
|
79
79
|
| [import-right-order](docs/rules/import-right-order.md) | Prefered right import order | 🔧 |
|
|
80
80
|
| [prefer-true-attribute-shorthand](docs/rules/prefer-true-attribute-shorthand.md) | Require shorthand form attribute when `v-bind` value is `true` | 🔧 |
|
|
81
|
-
| [use-shortest-alias](docs/rules/use-shortest-alias.md) | There are can be used shortest alias | 🔧 |
|
|
82
|
-
|
|
81
|
+
| [use-shortest-alias](docs/rules/use-shortest-alias.md) | There are can be used shortest alias | 🔧 |
|
|
82
|
+
|
|
83
83
|
<!-- end auto-generated rules list -->
|
|
84
84
|
|
|
85
85
|
|
|
@@ -29,7 +29,7 @@ module.exports = {
|
|
|
29
29
|
|
|
30
30
|
if (option !== 'always') return;
|
|
31
31
|
|
|
32
|
-
if (node.directive && node.key.name !== 'bind' && node.value?.expression
|
|
32
|
+
if (node.directive && node.key.name !== 'bind' && node.value?.expression?.value && node.value.expression.value === Boolean(node.value.expression.value)) {
|
|
33
33
|
const { argument } = node.key;
|
|
34
34
|
if (!argument) return;
|
|
35
35
|
|