@entva/styleguide 0.0.0 → 2.30.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.
Files changed (51) hide show
  1. package/README.md +16 -77
  2. package/package.json +29 -6
  3. package/.github/workflows/ci.yml +0 -14
  4. package/css/README.md +0 -385
  5. package/css/packages/stylelint/LICENSE +0 -21
  6. package/css/packages/stylelint/README.md +0 -27
  7. package/css/packages/stylelint/eslint.config.js +0 -3
  8. package/css/packages/stylelint/index.js +0 -84
  9. package/css/packages/stylelint/package-lock.json +0 -4042
  10. package/css/packages/stylelint/package.json +0 -42
  11. package/html/README.md +0 -98
  12. package/javascript/README.md +0 -3255
  13. package/javascript/packages/eslint-base/LICENSE +0 -21
  14. package/javascript/packages/eslint-base/README.md +0 -27
  15. package/javascript/packages/eslint-base/eslint.config.js +0 -3
  16. package/javascript/packages/eslint-base/index.js +0 -1084
  17. package/javascript/packages/eslint-base/package-lock.json +0 -2653
  18. package/javascript/packages/eslint-base/package.json +0 -36
  19. package/javascript/packages/eslint-react/LICENSE +0 -21
  20. package/javascript/packages/eslint-react/README.md +0 -27
  21. package/javascript/packages/eslint-react/eslint.config.js +0 -3
  22. package/javascript/packages/eslint-react/index.js +0 -526
  23. package/javascript/packages/eslint-react/package-lock.json +0 -3035
  24. package/javascript/packages/eslint-react/package.json +0 -42
  25. package/react/README.md +0 -726
  26. package/scripts/for-each-package +0 -12
  27. package/test/css.js +0 -36
  28. package/test/index.js +0 -7
  29. package/test/js.js +0 -35
  30. package/test/utils.js +0 -63
  31. package/tooling/packages/biome/LICENSE +0 -21
  32. package/tooling/packages/biome/README.md +0 -27
  33. package/tooling/packages/biome/package-lock.json +0 -183
  34. package/tooling/packages/biome/package.json +0 -38
  35. package/tsconfig.json +0 -31
  36. package/typescript/README.md +0 -66
  37. package/typescript/packages/eslint-typescript-base/LICENSE +0 -21
  38. package/typescript/packages/eslint-typescript-base/README.md +0 -27
  39. package/typescript/packages/eslint-typescript-base/eslint.config.js +0 -3
  40. package/typescript/packages/eslint-typescript-base/index.js +0 -272
  41. package/typescript/packages/eslint-typescript-base/package-lock.json +0 -3215
  42. package/typescript/packages/eslint-typescript-base/package.json +0 -41
  43. package/typescript/packages/eslint-typescript-base/tsconfig.json +0 -30
  44. package/typescript/packages/eslint-typescript-react/LICENSE +0 -21
  45. package/typescript/packages/eslint-typescript-react/README.md +0 -27
  46. package/typescript/packages/eslint-typescript-react/eslint.config.js +0 -3
  47. package/typescript/packages/eslint-typescript-react/index.js +0 -75
  48. package/typescript/packages/eslint-typescript-react/package-lock.json +0 -3630
  49. package/typescript/packages/eslint-typescript-react/package.json +0 -41
  50. package/typescript/packages/eslint-typescript-react/tsconfig.json +0 -30
  51. /package/{tooling/packages/biome/biome.json → biome.json} +0 -0
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) Maxim Degterev <max@degterev.me> (https://max.degterev.me)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
@@ -1,27 +0,0 @@
1
- # eslint-config-entva-base
2
-
3
- > Shareable entva styleguide config for eslint.
4
-
5
- Picked up where [`eslint-config-airbnb-base`](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb-base) left off.
6
-
7
- A shareable config to enforce entva styleguide: https://github.com/entva/styleguide
8
-
9
- To see the rules that this config uses, please read the [config itself](./index.js).
10
-
11
- ## Installation
12
-
13
- ```bash
14
- npm install eslint-config-entva-base --save-dev
15
- ```
16
-
17
- ## Usage
18
-
19
- If you've installed `eslint-config-entva-base` locally within your project, just set your `eslint` config to:
20
-
21
- ```json
22
- {
23
- "extends": "eslint-config-entva-base"
24
- }
25
- ```
26
-
27
- ## [MIT License](LICENSE)
@@ -1,3 +0,0 @@
1
- import baseConfig from './index.js';
2
-
3
- export default baseConfig;