@dvukovic/style-guide 0.3.94 → 0.3.96
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvukovic/style-guide",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.96",
|
|
4
4
|
"description": "My own style guide",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"eslint-plugin-mobx": "0.0.13",
|
|
44
44
|
"eslint-plugin-n": "17.23.1",
|
|
45
45
|
"eslint-plugin-playwright": "2.4.0",
|
|
46
|
-
"eslint-plugin-prettier": "5.5.4",
|
|
47
46
|
"eslint-plugin-promise": "7.2.1",
|
|
48
47
|
"eslint-plugin-react": "7.37.5",
|
|
49
48
|
"eslint-plugin-react-hooks": "7.0.1",
|
|
@@ -3,7 +3,6 @@ import eslintPlugin from "../plugins/eslint.js"
|
|
|
3
3
|
import eslintCommentsPlugin from "../plugins/eslint-comments.js"
|
|
4
4
|
import etcPlugin from "../plugins/etc.js"
|
|
5
5
|
import importXPlugin from "../plugins/import-x.js"
|
|
6
|
-
import prettierPlugin from "../plugins/prettier.js"
|
|
7
6
|
import promisePlugin from "../plugins/promise.js"
|
|
8
7
|
import rimacPlugin from "../plugins/rimac.js"
|
|
9
8
|
import simpleImportSortPlugin from "../plugins/simple-import-sort.js"
|
|
@@ -29,7 +28,6 @@ const coreConfig = [
|
|
|
29
28
|
stylisticPlugin,
|
|
30
29
|
simpleImportSortPlugin,
|
|
31
30
|
rimacPlugin,
|
|
32
|
-
prettierPlugin,
|
|
33
31
|
]
|
|
34
32
|
|
|
35
33
|
export default coreConfig
|
|
@@ -128,27 +128,29 @@ const plugin = {
|
|
|
128
128
|
"unicorn/prevent-abbreviations": [
|
|
129
129
|
"error",
|
|
130
130
|
{
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
131
|
+
ignore: [
|
|
132
|
+
"utils",
|
|
133
|
+
"Utils",
|
|
134
|
+
"Arg",
|
|
135
|
+
"Args",
|
|
136
|
+
"Param",
|
|
137
|
+
"Params",
|
|
138
|
+
"Prev",
|
|
139
|
+
"Prop",
|
|
140
|
+
"Props",
|
|
141
|
+
"Ref",
|
|
142
|
+
"Refs",
|
|
143
|
+
"arg",
|
|
144
|
+
"args",
|
|
145
|
+
"env",
|
|
146
|
+
"param",
|
|
147
|
+
"params",
|
|
148
|
+
"prev",
|
|
149
|
+
"prop",
|
|
150
|
+
"props",
|
|
151
|
+
"ref",
|
|
152
|
+
"refs",
|
|
153
|
+
],
|
|
152
154
|
},
|
|
153
155
|
],
|
|
154
156
|
"unicorn/relative-url-style": ["error", "always"],
|