@perfective/eslint-config 0.29.0 → 0.29.1
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/README.adoc +1 -1
- package/README.md +1 -1
- package/cypress.d.ts +1 -0
- package/index.d.ts +1734 -0
- package/jest-dom.d.ts +1 -0
- package/jest.d.ts +1 -0
- package/package.json +17 -6
- package/rules/array-func/index.d.ts +14 -0
- package/rules/cypress/index.d.ts +21 -0
- package/rules/eslint/index.d.ts +339 -0
- package/rules/eslint/layout-formatting.d.ts +64 -0
- package/rules/eslint/possible-problems.d.ts +96 -0
- package/rules/eslint/suggestions.d.ts +181 -0
- package/rules/eslint-comments/best-practices.d.ts +8 -0
- package/rules/eslint-comments/index.d.ts +21 -0
- package/rules/eslint-comments/stylistic-issues.d.ts +9 -0
- package/rules/import/helpful-warnings.d.ts +10 -0
- package/rules/import/index.d.ts +78 -0
- package/rules/import/module-systems.d.ts +10 -0
- package/rules/import/static-analysis.d.ts +26 -0
- package/rules/import/style-guide.d.ts +33 -0
- package/rules/jest/index.d.ts +124 -0
- package/rules/jest/typescript-eslint.d.ts +5 -0
- package/rules/jest-dom/index.d.ts +32 -0
- package/rules/jsdoc/index.d.ts +134 -0
- package/rules/n/index.d.ts +66 -0
- package/rules/prefer-arrow/index.d.ts +14 -0
- package/rules/promise/index.d.ts +35 -0
- package/rules/rxjs/index.d.ts +60 -0
- package/rules/security/index.d.ts +22 -0
- package/rules/simple-import-sort/index.d.ts +10 -0
- package/rules/stylistic/js/index.d.ts +197 -0
- package/rules/stylistic/jsx/index.d.ts +81 -0
- package/rules/stylistic/plus/index.d.ts +14 -0
- package/rules/stylistic/ts/index.d.ts +135 -0
- package/rules/testing-library/index.d.ts +62 -0
- package/rules/typescript-eslint/extension-rules.d.ts +113 -0
- package/rules/typescript-eslint/index.d.ts +369 -0
- package/rules/typescript-eslint/supported-rules.d.ts +253 -0
- package/rules/unicorn/index.d.ts +178 -0
- package/rxjs.d.ts +1 -0
- package/testing-library.d.ts +1 -0
package/README.adoc
CHANGED
|
@@ -94,7 +94,7 @@ npm install --save-dev \
|
|
|
94
94
|
const perfectiveEslintConfig = require('@perfective/eslint-config');
|
|
95
95
|
const perfectiveCypressConfig = require('@perfective/eslint-config/cypress');
|
|
96
96
|
const perfectiveJestConfig = require('@perfective/eslint-config/jest');
|
|
97
|
-
const perfectiveJestDomConfig = require('@perfective/eslint-config/
|
|
97
|
+
const perfectiveJestDomConfig = require('@perfective/eslint-config/jest-dom');
|
|
98
98
|
const perfectiveRxjsConfig = require('@perfective/eslint-config/rxjs');
|
|
99
99
|
const perfectiveTestingLibraryConfig = require('@perfective/eslint-config/testing-library');
|
|
100
100
|
|
package/README.md
CHANGED
|
@@ -87,7 +87,7 @@ from issues that will be fixed automatically.
|
|
|
87
87
|
const perfectiveEslintConfig = require('@perfective/eslint-config');
|
|
88
88
|
const perfectiveCypressConfig = require('@perfective/eslint-config/cypress');
|
|
89
89
|
const perfectiveJestConfig = require('@perfective/eslint-config/jest');
|
|
90
|
-
const perfectiveJestDomConfig = require('@perfective/eslint-config/
|
|
90
|
+
const perfectiveJestDomConfig = require('@perfective/eslint-config/jest-dom');
|
|
91
91
|
const perfectiveRxjsConfig = require('@perfective/eslint-config/rxjs');
|
|
92
92
|
const perfectiveTestingLibraryConfig = require('@perfective/eslint-config/testing-library');
|
|
93
93
|
|
package/cypress.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function cypressConfig(files?: string[]): Record<string, unknown>;
|