@atlaskit/eslint-plugin-platform 0.1.1 → 0.1.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/CHANGELOG.md +6 -0
- package/dist/cjs/index.js +8 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/index.js +8 -0
- package/dist/es2019/version.json +1 -1
- package/dist/esm/index.js +8 -0
- package/dist/esm/version.json +1 -1
- package/dist/types/index.d.ts +8 -0
- package/package.json +1 -1
- package/report.api.md +8 -0
- package/src/index.tsx +8 -0
- package/tmp/api-report-tmp.d.ts +8 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -19,6 +19,14 @@ var rules = {
|
|
|
19
19
|
};
|
|
20
20
|
exports.rules = rules;
|
|
21
21
|
var configs = {
|
|
22
|
+
productRecommended: {
|
|
23
|
+
plugins: ['@atlaskit/platform'],
|
|
24
|
+
rules: {
|
|
25
|
+
'@atlaskit/platform/ensure-test-runner-arguments': 'error',
|
|
26
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': 'warn',
|
|
27
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': 'error'
|
|
28
|
+
}
|
|
29
|
+
},
|
|
22
30
|
recommended: {
|
|
23
31
|
plugins: ['@atlaskit/platform'],
|
|
24
32
|
rules: {
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/index.js
CHANGED
|
@@ -11,6 +11,14 @@ export const rules = {
|
|
|
11
11
|
'no-pre-post-install-scripts': noPreAndPostInstallScripts
|
|
12
12
|
};
|
|
13
13
|
export const configs = {
|
|
14
|
+
productRecommended: {
|
|
15
|
+
plugins: ['@atlaskit/platform'],
|
|
16
|
+
rules: {
|
|
17
|
+
'@atlaskit/platform/ensure-test-runner-arguments': 'error',
|
|
18
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': 'warn',
|
|
19
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': 'error'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
14
22
|
recommended: {
|
|
15
23
|
plugins: ['@atlaskit/platform'],
|
|
16
24
|
rules: {
|
package/dist/es2019/version.json
CHANGED
package/dist/esm/index.js
CHANGED
|
@@ -11,6 +11,14 @@ export var rules = {
|
|
|
11
11
|
'no-pre-post-install-scripts': noPreAndPostInstallScripts
|
|
12
12
|
};
|
|
13
13
|
export var configs = {
|
|
14
|
+
productRecommended: {
|
|
15
|
+
plugins: ['@atlaskit/platform'],
|
|
16
|
+
rules: {
|
|
17
|
+
'@atlaskit/platform/ensure-test-runner-arguments': 'error',
|
|
18
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': 'warn',
|
|
19
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': 'error'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
14
22
|
recommended: {
|
|
15
23
|
plugins: ['@atlaskit/platform'],
|
|
16
24
|
rules: {
|
package/dist/esm/version.json
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -7,6 +7,14 @@ export declare const rules: {
|
|
|
7
7
|
'no-pre-post-install-scripts': import("eslint").Rule.RuleModule;
|
|
8
8
|
};
|
|
9
9
|
export declare const configs: {
|
|
10
|
+
productRecommended: {
|
|
11
|
+
plugins: string[];
|
|
12
|
+
rules: {
|
|
13
|
+
'@atlaskit/platform/ensure-test-runner-arguments': string;
|
|
14
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': string;
|
|
15
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
10
18
|
recommended: {
|
|
11
19
|
plugins: string[];
|
|
12
20
|
rules: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/eslint-plugin-platform",
|
|
3
3
|
"description": "The essential plugin for use with Atlassian frontend platform tools",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"atlassian": {
|
|
7
7
|
"team": "UIP - Platform Integration Trust (PITa)",
|
package/report.api.md
CHANGED
|
@@ -20,6 +20,14 @@ import { Rule } from 'eslint';
|
|
|
20
20
|
|
|
21
21
|
// @public (undocumented)
|
|
22
22
|
export const configs: {
|
|
23
|
+
productRecommended: {
|
|
24
|
+
plugins: string[];
|
|
25
|
+
rules: {
|
|
26
|
+
'@atlaskit/platform/ensure-test-runner-arguments': string;
|
|
27
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': string;
|
|
28
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
23
31
|
recommended: {
|
|
24
32
|
plugins: string[];
|
|
25
33
|
rules: {
|
package/src/index.tsx
CHANGED
|
@@ -14,6 +14,14 @@ export const rules = {
|
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
export const configs = {
|
|
17
|
+
productRecommended: {
|
|
18
|
+
plugins: ['@atlaskit/platform'],
|
|
19
|
+
rules: {
|
|
20
|
+
'@atlaskit/platform/ensure-test-runner-arguments': 'error',
|
|
21
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': 'warn',
|
|
22
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': 'error',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
17
25
|
recommended: {
|
|
18
26
|
plugins: ['@atlaskit/platform'],
|
|
19
27
|
rules: {
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -9,6 +9,14 @@ import { Rule } from 'eslint';
|
|
|
9
9
|
|
|
10
10
|
// @public (undocumented)
|
|
11
11
|
export const configs: {
|
|
12
|
+
productRecommended: {
|
|
13
|
+
plugins: string[];
|
|
14
|
+
rules: {
|
|
15
|
+
'@atlaskit/platform/ensure-test-runner-arguments': string;
|
|
16
|
+
'@atlaskit/platform/ensure-test-runner-nested-count': string;
|
|
17
|
+
'@atlaskit/platform/no-invalid-feature-flag-usage': string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
12
20
|
recommended: {
|
|
13
21
|
plugins: string[];
|
|
14
22
|
rules: {
|