@clipboard-health/eslint-config 1.8.2 → 2.1.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 +18 -0
- package/package.json +1 -1
- package/src/xo.d.ts +6 -0
- package/src/xo.js +3 -0
- package/src/xo.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.1.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-2.0.0...eslint-config-2.1.0) (2023-04-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add `message-consumer-nestjs` ([#35](https://github.com/ClipboardHealth/cbh-core/issues/35)) ([806cd88](https://github.com/ClipboardHealth/cbh-core/commit/806cd881caf723a7971f707954e72d8cf346088e))
|
|
11
|
+
|
|
12
|
+
## [2.0.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.8.2...eslint-config-2.0.0) (2023-04-25)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### ⚠ BREAKING CHANGES
|
|
16
|
+
|
|
17
|
+
* eslint-config v1
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* eslint-config v1 ([b27d600](https://github.com/ClipboardHealth/cbh-core/commit/b27d600fe3be687c5ca03cd337cdc592b698fbd9))
|
|
22
|
+
|
|
5
23
|
## [1.8.2](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.8.1...eslint-config-1.8.2) (2023-04-24)
|
|
6
24
|
|
|
7
25
|
|
package/package.json
CHANGED
package/src/xo.d.ts
CHANGED
|
@@ -10,10 +10,16 @@ export declare const rules: {
|
|
|
10
10
|
"@typescript-eslint/naming-convention": string;
|
|
11
11
|
"@typescript-eslint/no-unsafe-assignment": string;
|
|
12
12
|
"@typescript-eslint/no-unsafe-call": string;
|
|
13
|
+
"@typescript-eslint/consistent-type-imports": string;
|
|
13
14
|
"@typescript-eslint/no-unused-vars": (string | {
|
|
14
15
|
argsIgnorePattern: string;
|
|
15
16
|
})[];
|
|
17
|
+
"capitalized-comments": string;
|
|
16
18
|
"import/order": string;
|
|
19
|
+
"new-cap": (string | {
|
|
20
|
+
newIsCap: boolean;
|
|
21
|
+
capIsNew: boolean;
|
|
22
|
+
})[];
|
|
17
23
|
"no-only-tests/no-only-tests": string;
|
|
18
24
|
"simple-import-sort/imports": string;
|
|
19
25
|
"simple-import-sort/exports": string;
|
package/src/xo.js
CHANGED
|
@@ -11,8 +11,11 @@ module.exports = {
|
|
|
11
11
|
"@typescript-eslint/naming-convention": "off",
|
|
12
12
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
13
13
|
"@typescript-eslint/no-unsafe-call": "off",
|
|
14
|
+
"@typescript-eslint/consistent-type-imports": "off",
|
|
14
15
|
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
|
|
16
|
+
"capitalized-comments": "off",
|
|
15
17
|
"import/order": "off",
|
|
18
|
+
"new-cap": ["warn", { newIsCap: true, capIsNew: false }],
|
|
16
19
|
"no-only-tests/no-only-tests": "error",
|
|
17
20
|
"simple-import-sort/imports": "warn",
|
|
18
21
|
"simple-import-sort/exports": "warn",
|
package/src/xo.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"xo.js","sourceRoot":"","sources":["../../../../packages/eslint-config/src/xo.js"],"names":[],"mappings":";AAAA,MAAM,CAAC,OAAO,GAAG;IACf,OAAO,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,qBAAqB,CAAC;IAClD,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,OAAO,EAAE,CAAC,eAAe,CAAC;QAC1B,eAAe,EAAE,SAAS;KAC3B;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,oBAAoB,CAAC;IAChD,KAAK,EAAE;QACL,sCAAsC,EAAE,KAAK;QAC7C,yCAAyC,EAAE,KAAK;QAChD,mCAAmC,EAAE,KAAK;QAC1C,mCAAmC,EAAE,CAAC,MAAM,EAAE,EAAE,iBAAiB,EAAE,IAAI,EAAE,CAAC;QAC1E,cAAc,EAAE,KAAK;QACrB,6BAA6B,EAAE,OAAO;QACtC,4BAA4B,EAAE,MAAM;QACpC,4BAA4B,EAAE,MAAM;KACrC;CACF,CAAC"}
|
|
1
|
+
{"version":3,"file":"xo.js","sourceRoot":"","sources":["../../../../packages/eslint-config/src/xo.js"],"names":[],"mappings":";AAAA,MAAM,CAAC,OAAO,GAAG;IACf,OAAO,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,qBAAqB,CAAC;IAClD,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,OAAO,EAAE,CAAC,eAAe,CAAC;QAC1B,eAAe,EAAE,SAAS;KAC3B;IACD,OAAO,EAAE,CAAC,eAAe,EAAE,oBAAoB,CAAC;IAChD,KAAK,EAAE;QACL,sCAAsC,EAAE,KAAK;QAC7C,yCAAyC,EAAE,KAAK;QAChD,mCAAmC,EAAE,KAAK;QAC1C,4CAA4C,EAAE,KAAK;QACnD,mCAAmC,EAAE,CAAC,MAAM,EAAE,EAAE,iBAAiB,EAAE,IAAI,EAAE,CAAC;QAC1E,sBAAsB,EAAE,KAAK;QAC7B,cAAc,EAAE,KAAK;QACrB,SAAS,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;QACxD,6BAA6B,EAAE,OAAO;QACtC,4BAA4B,EAAE,MAAM;QACpC,4BAA4B,EAAE,MAAM;KACrC;CACF,CAAC"}
|