@akinon/eslint-plugin-projectzero 2.0.10-rc.0 → 2.0.10
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/CHANGELOG.md +1 -5
- package/package.json +1 -1
- package/rules/check-locale.ts +1 -4
- package/rules/check-menu-depth.ts +1 -4
- package/rules/check-middleware-order.ts +1 -4
- package/rules/check-sentry-options.ts +1 -4
- package/rules/client-url.ts +1 -4
- package/rules/image-import.ts +1 -4
- package/rules/invalid-imports.ts +1 -4
- package/rules/link-import.ts +1 -4
- package/rules/meta-data-import.ts +1 -4
- package/rules/router-import.ts +1 -4
- package/rules/skip-trailing-slash-redirect.ts +1 -4
- package/rules/urls-without-slash.ts +1 -4
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/rules/check-locale.ts
CHANGED
|
@@ -22,8 +22,7 @@ const getAllKeysFromObject = (obj: any, prefix = ''): string[] => {
|
|
|
22
22
|
}, [] as string[]);
|
|
23
23
|
};
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
25
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
27
26
|
create(context: any) {
|
|
28
27
|
return {
|
|
29
28
|
CallExpression(node: any) {
|
|
@@ -77,5 +76,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
77
76
|
},
|
|
78
77
|
defaultOptions: []
|
|
79
78
|
});
|
|
80
|
-
|
|
81
|
-
export default rule;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
import { AST_NODE_TYPES } from '@typescript-eslint/types';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
4
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
6
5
|
create: function (context) {
|
|
7
6
|
return {
|
|
8
7
|
CallExpression(node) {
|
|
@@ -47,5 +46,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
47
46
|
},
|
|
48
47
|
defaultOptions: []
|
|
49
48
|
});
|
|
50
|
-
|
|
51
|
-
export default rule;
|
|
@@ -13,8 +13,7 @@ const correctOrder = [
|
|
|
13
13
|
'withCompleteMasterpass'
|
|
14
14
|
];
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
16
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
18
17
|
create(context: any) {
|
|
19
18
|
return {
|
|
20
19
|
CallExpression(node: any) {
|
|
@@ -66,5 +65,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
66
65
|
},
|
|
67
66
|
defaultOptions: []
|
|
68
67
|
});
|
|
69
|
-
|
|
70
|
-
export default rule;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils, TSESTree } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
3
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
5
4
|
create(context) {
|
|
6
5
|
return {
|
|
7
6
|
CallExpression(node: TSESTree.CallExpression) {
|
|
@@ -60,5 +59,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
60
59
|
},
|
|
61
60
|
defaultOptions: []
|
|
62
61
|
});
|
|
63
|
-
|
|
64
|
-
export default rule;
|
package/rules/client-url.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
3
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
5
4
|
create(context) {
|
|
6
5
|
if (!context.getFilename().includes('urls.ts')) {
|
|
7
6
|
return {};
|
|
@@ -43,5 +42,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
43
42
|
},
|
|
44
43
|
defaultOptions: []
|
|
45
44
|
});
|
|
46
|
-
|
|
47
|
-
export default rule;
|
package/rules/image-import.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
3
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
5
4
|
create(context) {
|
|
6
5
|
if (context.getFilename().includes('components/image.tsx')) {
|
|
7
6
|
return {};
|
|
@@ -43,5 +42,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
43
42
|
},
|
|
44
43
|
defaultOptions: []
|
|
45
44
|
});
|
|
46
|
-
|
|
47
|
-
export default rule;
|
package/rules/invalid-imports.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
3
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
5
4
|
create(context) {
|
|
6
5
|
if (!context.getFilename().includes('akinon-next')) {
|
|
7
6
|
return {};
|
|
@@ -42,5 +41,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
42
41
|
},
|
|
43
42
|
defaultOptions: []
|
|
44
43
|
});
|
|
45
|
-
|
|
46
|
-
export default rule;
|
package/rules/link-import.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
import * as path from 'path';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
4
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
6
5
|
create(context) {
|
|
7
6
|
const currentFilePath = path.normalize(context.getFilename());
|
|
8
7
|
const linkComponentPath = path.normalize(
|
|
@@ -49,5 +48,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
49
48
|
},
|
|
50
49
|
defaultOptions: []
|
|
51
50
|
});
|
|
52
|
-
|
|
53
|
-
export default rule;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
3
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
5
4
|
create(context) {
|
|
6
5
|
return {
|
|
7
6
|
ImportDeclaration(node) {
|
|
@@ -49,5 +48,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
49
48
|
},
|
|
50
49
|
defaultOptions: []
|
|
51
50
|
});
|
|
52
|
-
|
|
53
|
-
export default rule;
|
package/rules/router-import.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
3
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
5
4
|
create(context) {
|
|
6
5
|
if (context.getFilename().includes('@akinon/next/hooks/use-router.ts')) {
|
|
7
6
|
return {};
|
|
@@ -43,5 +42,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
43
42
|
},
|
|
44
43
|
defaultOptions: []
|
|
45
44
|
});
|
|
46
|
-
|
|
47
|
-
export default rule;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { AST_NODE_TYPES } from '@typescript-eslint/types';
|
|
2
2
|
import { ESLintUtils } from '@typescript-eslint/utils';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
4
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
6
5
|
create(context) {
|
|
7
6
|
return {
|
|
8
7
|
VariableDeclarator(node) {
|
|
@@ -59,5 +58,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
59
58
|
},
|
|
60
59
|
defaultOptions: []
|
|
61
60
|
});
|
|
62
|
-
|
|
63
|
-
export default rule;
|
|
@@ -4,8 +4,7 @@ const URLS = [
|
|
|
4
4
|
'/users/logout/'
|
|
5
5
|
];
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
7
|
+
export default ESLintUtils.RuleCreator.withoutDocs({
|
|
9
8
|
create(context) {
|
|
10
9
|
if (!context.getFilename().includes('urls.ts')) {
|
|
11
10
|
return {};
|
|
@@ -43,5 +42,3 @@ const rule: any = ESLintUtils.RuleCreator.withoutDocs({
|
|
|
43
42
|
},
|
|
44
43
|
defaultOptions: []
|
|
45
44
|
});
|
|
46
|
-
|
|
47
|
-
export default rule;
|