@atlaskit/eslint-plugin-design-system 4.12.4 → 4.13.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/CHANGELOG.md +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
- package/report.api.md +11 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/eslint-plugin-design-system
|
|
2
2
|
|
|
3
|
+
## 4.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`9693f6e7816`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9693f6e7816) - [ux] Adds a new case to the no-unsafe-design-token-usage rule to lint against uses of 'experimental' tokens and automatically replace them with their replacement (either a token or a fallback) via a fixer.
|
|
8
|
+
|
|
3
9
|
## 4.12.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/eslint-plugin-design-system",
|
|
3
3
|
"description": "The essential plugin for use with the Atlassian Design System.",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.13.0",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"registry": "https://registry.npmjs.org/"
|
package/report.api.md
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/eslint-plugin-design-system"
|
|
1
|
+
## API Report File for "@atlaskit/eslint-plugin-design-system"
|
|
2
2
|
|
|
3
|
-
> Do not edit this file.
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
<!--
|
|
6
|
+
Generated API Report version: 2.0
|
|
7
|
+
-->
|
|
4
8
|
|
|
5
9
|
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
6
10
|
|
|
7
11
|
```ts
|
|
8
12
|
import { Rule } from 'eslint';
|
|
9
13
|
|
|
10
|
-
|
|
14
|
+
// @public (undocumented)
|
|
15
|
+
export const configs: {
|
|
11
16
|
recommended: {
|
|
12
17
|
plugins: string[];
|
|
13
18
|
rules: {
|
|
@@ -32,7 +37,8 @@ export declare const configs: {
|
|
|
32
37
|
};
|
|
33
38
|
};
|
|
34
39
|
|
|
35
|
-
|
|
40
|
+
// @public (undocumented)
|
|
41
|
+
export const rules: {
|
|
36
42
|
'ensure-design-token-usage': Rule.RuleModule;
|
|
37
43
|
'icon-label': Rule.RuleModule;
|
|
38
44
|
'no-deprecated-apis': Rule.RuleModule;
|
|
@@ -44,5 +50,5 @@ export declare const rules: {
|
|
|
44
50
|
'no-raw-spacing-values': Rule.RuleModule;
|
|
45
51
|
};
|
|
46
52
|
|
|
47
|
-
|
|
53
|
+
// (No @packageDocumentation comment for this package)
|
|
48
54
|
```
|