@kontent-ai/eslint-config 0.1.2 → 0.1.3

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 (4) hide show
  1. package/README.md +15 -13
  2. package/jest.js +1 -1
  3. package/package.json +1 -1
  4. package/react.js +1 -1
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  [![Contributors][contributors-shield]][contributors-url]
2
+ [![npm][npm-shield]](https://www.npmjs.com/package/@kontent-ai/eslint-config)
2
3
  [![Forks][forks-shield]][forks-url]
3
4
  [![Stargazers][stars-shield]][stars-url]
4
5
  [![Issues][issues-shield]][issues-url]
@@ -16,24 +17,25 @@ This is the eslint configuration that Kontent.ai uses for its TypeScript package
16
17
  Install the package and [extend](https://eslint.org/docs/latest/use/configure/configuration-files#extending-configuration-files) from it your eslint configuration.
17
18
 
18
19
  Available configurations are:
19
- * kontent-ai (default configuration for any TypeScript file)
20
- * kontent-ai/react (react specific, extends default)
21
- * kontent-ai/jest (jest specific, extends default)
20
+ * `@kontent-ai` (default configuration for any TypeScript file)
21
+ * `@kontent-ai/eslint-config/react` (react specific, extends default)
22
+ * `@kontent-ai/eslint-config/jest` (jest specific, extends default)
22
23
 
23
24
  # License
24
25
 
25
26
  Distributed under the MIT License. See [`LICENSE.md`](./LICENSE.md) for more information.
26
27
 
27
28
 
28
- [contributors-shield]: https://img.shields.io/github/contributors/JiriLojda/eslint-config-kontent-ai.svg?style=for-the-badge
29
- [contributors-url]: https://github.com/JiriLojda/eslint-config-kontent-ai/graphs/contributors
30
- [forks-shield]: https://img.shields.io/github/forks/JiriLojda/eslint-config-kontent-ai.svg?style=for-the-badge
31
- [forks-url]: https://github.com/JiriLojda/eslint-config-kontent-ai/network/members
32
- [stars-shield]: https://img.shields.io/github/stars/JiriLojda/eslint-config-kontent-ai.svg?style=for-the-badge
33
- [stars-url]: https://github.com/JiriLojda/eslint-config-kontent-ai/stargazers
34
- [issues-shield]: https://img.shields.io/github/issues/JiriLojda/eslint-config-kontent-ai.svg?style=for-the-badge
35
- [issues-url]:https://github.com/JiriLojda/eslint-config-kontent-ai/issues
36
- [license-shield]: https://img.shields.io/github/license/JiriLojda/eslint-config-kontent-ai.svg?style=for-the-badge
37
- [license-url]:https://github.com/JiriLojda/eslint-config-kontent-ai/blob/master/LICENSE.md
29
+ [contributors-shield]: https://img.shields.io/github/contributors/kontent-ai/eslint-config.svg?style=for-the-badge
30
+ [contributors-url]: https://github.com/kontent-ai/eslint-config/graphs/contributors
31
+ [npm-shield]: https://img.shields.io/badge/NPM-%23CB3837.svg?style=for-the-badge&logo=npm&logoColor=white
32
+ [forks-shield]: https://img.shields.io/github/forks/kontent-ai/eslint-config.svg?style=for-the-badge
33
+ [forks-url]: https://github.com/kontent-ai/eslint-config/network/members
34
+ [stars-shield]: https://img.shields.io/github/stars/kontent-ai/eslint-config.svg?style=for-the-badge
35
+ [stars-url]: https://github.com/kontent-ai/eslint-config/stargazers
36
+ [issues-shield]: https://img.shields.io/github/issues/kontent-ai/eslint-config.svg?style=for-the-badge
37
+ [issues-url]:https://github.com/kontent-ai/eslint-config/issues
38
+ [license-shield]: https://img.shields.io/github/license/kontent-ai/eslint-config.svg?style=for-the-badge
39
+ [license-url]:https://github.com/kontent-ai/eslint-config/blob/master/LICENSE.md
38
40
  [discord-shield]: https://img.shields.io/discord/821885171984891914?color=%237289DA&label=Kontent.ai%20Discord&logo=discord&style=for-the-badge
39
41
  [discord-url]: https://discord.com/invite/SKCxwPtevJ
package/jest.js CHANGED
@@ -4,7 +4,7 @@ module.exports = {
4
4
  ],
5
5
 
6
6
  extends: [
7
- "kontent-ai",
7
+ "@kontent-ai",
8
8
  "plugin:jest/recommended",
9
9
  "plugin:jest/style",
10
10
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kontent-ai/eslint-config",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Eslint configuration used for packages in Kontent.ai",
5
5
  "main": "index.js",
6
6
  "private": false,
package/react.js CHANGED
@@ -5,7 +5,7 @@ module.exports = {
5
5
  ],
6
6
 
7
7
  extends: [
8
- "kontent-ai",
8
+ "@kontent-ai",
9
9
  ],
10
10
 
11
11
  rules: {