@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.
Files changed (42) hide show
  1. package/README.adoc +1 -1
  2. package/README.md +1 -1
  3. package/cypress.d.ts +1 -0
  4. package/index.d.ts +1734 -0
  5. package/jest-dom.d.ts +1 -0
  6. package/jest.d.ts +1 -0
  7. package/package.json +17 -6
  8. package/rules/array-func/index.d.ts +14 -0
  9. package/rules/cypress/index.d.ts +21 -0
  10. package/rules/eslint/index.d.ts +339 -0
  11. package/rules/eslint/layout-formatting.d.ts +64 -0
  12. package/rules/eslint/possible-problems.d.ts +96 -0
  13. package/rules/eslint/suggestions.d.ts +181 -0
  14. package/rules/eslint-comments/best-practices.d.ts +8 -0
  15. package/rules/eslint-comments/index.d.ts +21 -0
  16. package/rules/eslint-comments/stylistic-issues.d.ts +9 -0
  17. package/rules/import/helpful-warnings.d.ts +10 -0
  18. package/rules/import/index.d.ts +78 -0
  19. package/rules/import/module-systems.d.ts +10 -0
  20. package/rules/import/static-analysis.d.ts +26 -0
  21. package/rules/import/style-guide.d.ts +33 -0
  22. package/rules/jest/index.d.ts +124 -0
  23. package/rules/jest/typescript-eslint.d.ts +5 -0
  24. package/rules/jest-dom/index.d.ts +32 -0
  25. package/rules/jsdoc/index.d.ts +134 -0
  26. package/rules/n/index.d.ts +66 -0
  27. package/rules/prefer-arrow/index.d.ts +14 -0
  28. package/rules/promise/index.d.ts +35 -0
  29. package/rules/rxjs/index.d.ts +60 -0
  30. package/rules/security/index.d.ts +22 -0
  31. package/rules/simple-import-sort/index.d.ts +10 -0
  32. package/rules/stylistic/js/index.d.ts +197 -0
  33. package/rules/stylistic/jsx/index.d.ts +81 -0
  34. package/rules/stylistic/plus/index.d.ts +14 -0
  35. package/rules/stylistic/ts/index.d.ts +135 -0
  36. package/rules/testing-library/index.d.ts +62 -0
  37. package/rules/typescript-eslint/extension-rules.d.ts +113 -0
  38. package/rules/typescript-eslint/index.d.ts +369 -0
  39. package/rules/typescript-eslint/supported-rules.d.ts +253 -0
  40. package/rules/unicorn/index.d.ts +178 -0
  41. package/rxjs.d.ts +1 -0
  42. 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/jesd-dom');
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/jesd-dom');
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>;