eslint-plugin-gamut 3.0.3-alpha.8432ac.0 → 3.0.3-alpha.935e74.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/.turbo/turbo-build.log +4 -0
- package/CHANGELOG.md +1 -1
- package/README.md +13 -10
- package/dist/createRule.js +1 -1
- package/dist/createRule.js.map +1 -1
- package/dist/gamut-import-paths.js +8 -4
- package/dist/gamut-import-paths.js.map +1 -1
- package/jest.config.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
### 3.0.3-alpha.
|
|
6
|
+
### 3.0.3-alpha.935e74.0 (2022-02-04)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package eslint-plugin-gamut
|
package/README.md
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
# `gamut
|
|
1
|
+
# `eslint-plugin-gamut`
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
A wrapper around [`component-test-setup`](https://github.com/Codecademy/component-test-setup) that wraps the node with an `@emotion/react`+`gamut-styles` `<ThemeProvider theme={theme}>`.
|
|
6
|
-
Use this instead of `component-test-setup` to test Gamut components in Gamut apps!
|
|
3
|
+
Recommended eslint plugin for Gamut applications. ✨
|
|
7
4
|
|
|
8
5
|
## Usage
|
|
9
6
|
|
|
10
|
-
The API is functionally the same `component-test-setup`:
|
|
11
|
-
|
|
12
7
|
```tsx
|
|
13
|
-
|
|
8
|
+
// eslintrc.js
|
|
9
|
+
|
|
10
|
+
module.exports = {
|
|
11
|
+
root: true,
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
plugins: ['eslint-plugin-gamut'],
|
|
16
14
|
|
|
17
|
-
|
|
15
|
+
rules: {
|
|
16
|
+
'gamut/prefer-themed': 'error',
|
|
17
|
+
'gamut/no-css-standalone': 'error',
|
|
18
|
+
'gamut/import-paths': 'error',
|
|
19
|
+
},
|
|
20
|
+
};
|
|
18
21
|
```
|
package/dist/createRule.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createRule = void 0;
|
|
4
4
|
const experimental_utils_1 = require("@typescript-eslint/experimental-utils");
|
|
5
|
-
exports.createRule = experimental_utils_1.ESLintUtils.RuleCreator(name => `https://example.com/rule/${name}`);
|
|
5
|
+
exports.createRule = experimental_utils_1.ESLintUtils.RuleCreator((name) => `https://example.com/rule/${name}`);
|
|
6
6
|
//# sourceMappingURL=createRule.js.map
|
package/dist/createRule.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createRule.js","sourceRoot":"","sources":["../src/createRule.ts"],"names":[],"mappings":";;;AAAA,8EAAoE;AAEvD,QAAA,UAAU,GAAG,gCAAW,CAAC,WAAW,CAC/C,IAAI,
|
|
1
|
+
{"version":3,"file":"createRule.js","sourceRoot":"","sources":["../src/createRule.ts"],"names":[],"mappings":";;;AAAA,8EAAoE;AAEvD,QAAA,UAAU,GAAG,gCAAW,CAAC,WAAW,CAC/C,CAAC,IAAI,EAAE,EAAE,CAAC,4BAA4B,IAAI,EAAE,CAC7C,CAAC"}
|
|
@@ -19,9 +19,11 @@ exports.default = (0, createRule_1.createRule)({
|
|
|
19
19
|
if (importPath.includes('/src')) {
|
|
20
20
|
const indexOfSrc = node.source.range[0] + importPath.search('/src');
|
|
21
21
|
context.report({
|
|
22
|
-
...(importPath.endsWith('/src') && {
|
|
22
|
+
...(importPath.endsWith('/src') && {
|
|
23
|
+
fix: (fixer) => {
|
|
23
24
|
return fixer.removeRange([indexOfSrc + 1, node.range[1] - 2]);
|
|
24
|
-
}
|
|
25
|
+
},
|
|
26
|
+
}),
|
|
25
27
|
messageId: 'removeSrc',
|
|
26
28
|
node,
|
|
27
29
|
});
|
|
@@ -30,9 +32,11 @@ exports.default = (0, createRule_1.createRule)({
|
|
|
30
32
|
if (importPath.includes('/dist')) {
|
|
31
33
|
const indexOfDist = node.source.range[0] + importPath.search('/dist');
|
|
32
34
|
context.report({
|
|
33
|
-
...(importPath.endsWith('/dist')
|
|
35
|
+
...(importPath.endsWith('/dist') && {
|
|
36
|
+
fix: (fixer) => {
|
|
34
37
|
return fixer.removeRange([indexOfDist + 1, node.range[1] - 2]);
|
|
35
|
-
}
|
|
38
|
+
},
|
|
39
|
+
}),
|
|
36
40
|
messageId: 'removeDist',
|
|
37
41
|
node,
|
|
38
42
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gamut-import-paths.js","sourceRoot":"","sources":["../src/gamut-import-paths.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"gamut-import-paths.js","sourceRoot":"","sources":["../src/gamut-import-paths.ts"],"names":[],"mappings":";;AAEA,6CAA0C;AAE1C,kBAAe,IAAA,uBAAU,EAAC;IACxB,MAAM,CAAC,OAAO;QACZ,OAAO;YACL,gEAAgE,EAAE,UAChE,IAAgC;gBAEhC,MAAM,QAAQ,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC;gBACvC,MAAM,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;gBAErC,MAAM,aAAa,GAAG,QAAQ,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;gBACpE,MAAM,aAAa,GAAG,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;gBAExE,IAAI,aAAa,KAAK,aAAa,EAAE;oBACnC,OAAO,CAAC,MAAM,CAAC;wBACb,SAAS,EAAE,mBAAmB;wBAC9B,IAAI;qBACL,CAAC,CAAC;oBACH,OAAO;iBACR;gBAED,IAAI,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;oBAC/B,MAAM,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;oBACpE,OAAO,CAAC,MAAM,CAAC;wBACb,GAAG,CAAC,UAAU,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI;4BACjC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;gCACb,OAAO,KAAK,CAAC,WAAW,CAAC,CAAC,UAAU,GAAG,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;4BAChE,CAAC;yBACF,CAAC;wBACF,SAAS,EAAE,WAAW;wBACtB,IAAI;qBACL,CAAC,CAAC;oBACH,OAAO;iBACR;gBACD,IAAI,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;oBAChC,MAAM,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;oBACtE,OAAO,CAAC,MAAM,CAAC;wBACb,GAAG,CAAC,UAAU,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI;4BAClC,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;gCACb,OAAO,KAAK,CAAC,WAAW,CAAC,CAAC,WAAW,GAAG,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;4BACjE,CAAC;yBACF,CAAC;wBACF,SAAS,EAAE,YAAY;wBACvB,IAAI;qBACL,CAAC,CAAC;iBACJ;YACH,CAAC;SACF,CAAC;IACJ,CAAC;IACD,cAAc,EAAE,EAAE;IAClB,IAAI,EAAE;QACJ,IAAI,EAAE;YACJ,WAAW,EAAE,0DAA0D;YACvE,WAAW,EAAE,OAAO;SACrB;QACD,OAAO,EAAE,MAAM;QACf,QAAQ,EAAE;YACR,UAAU,EACR,kEAAkE;YACpE,SAAS,EACP,iEAAiE;YACnE,iBAAiB,EAAE,gDAAgD;SACpE;QACD,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE,EAAE;KACX;IACD,IAAI,EAAE,oBAAoB;CAC3B,CAAC,CAAC"}
|
package/jest.config.js
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"gamut-styles"
|
|
9
9
|
],
|
|
10
10
|
"name": "eslint-plugin-gamut",
|
|
11
|
-
"version": "3.0.3-alpha.
|
|
11
|
+
"version": "3.0.3-alpha.935e74.0",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"main": "./dist/index.js",
|
|
14
14
|
"module": "dist/index.js",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/eslint": "^8.2.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "d257aa4cfd94595db97710761cc63e029a86d662"
|
|
39
39
|
}
|