@eslint-sets/eslint-config 4.0.0-beta.10

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/LICENSE +21 -0
  2. package/README.md +64 -0
  3. package/index.js +13 -0
  4. package/package.json +82 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 saqqdy <saqqdy@qq.com>
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 all
13
+ 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 THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,64 @@
1
+ <div style="text-align: center;" align="center">
2
+
3
+ # @eslint-sets/eslint-config
4
+
5
+ Eslint config sets
6
+
7
+ [![NPM version][npm-image]][npm-url]
8
+ [![Codacy Badge][codacy-image]][codacy-url]
9
+ [![Test coverage][codecov-image]][codecov-url]
10
+ [![npm download][download-image]][download-url]
11
+ [![gzip][gzip-image]][gzip-url]
12
+ [![License][license-image]][license-url]
13
+
14
+ [![Sonar][sonar-image]][sonar-url]
15
+
16
+ </div>
17
+
18
+ ## Install
19
+
20
+ ```bash
21
+ # use npm
22
+ $ npm install -D @eslint-sets/eslint-config
23
+
24
+ # use yarn
25
+ $ yarn add -D @eslint-sets/eslint-config
26
+
27
+ # use pnpm
28
+ $ pnpm install -D @eslint-sets/eslint-config
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ```js
34
+ // .eslintrc.js
35
+ module.exports = {
36
+ extends: ['@eslint-sets'],
37
+ rules: {
38
+ // custom rules
39
+ }
40
+ }
41
+ ```
42
+
43
+ ## Issues & Support
44
+
45
+ Please open an issue [here](https://github.com/saqqdy/@eslint-sets/eslint-config/issues).
46
+
47
+ ## License
48
+
49
+ [MIT](LICENSE)
50
+
51
+ [npm-image]: https://img.shields.io/npm/v/@eslint-sets/eslint-config.svg?style=flat-square
52
+ [npm-url]: https://npmjs.org/package/@eslint-sets/eslint-config
53
+ [codacy-image]: https://app.codacy.com/project/badge/Grade/f70d4880e4ad4f40aa970eb9ee9d0696
54
+ [codacy-url]: https://www.codacy.com/gh/saqqdy/@eslint-sets/eslint-config/dashboard?utm_source=github.com&utm_medium=referral&utm_content=saqqdy/@eslint-sets/eslint-config&utm_campaign=Badge_Grade
55
+ [codecov-image]: https://img.shields.io/codecov/c/github/saqqdy/@eslint-sets/eslint-config.svg?style=flat-square
56
+ [codecov-url]: https://codecov.io/github/saqqdy/@eslint-sets/eslint-config?branch=master
57
+ [download-image]: https://img.shields.io/npm/dm/@eslint-sets/eslint-config.svg?style=flat-square
58
+ [download-url]: https://npmjs.org/package/@eslint-sets/eslint-config
59
+ [gzip-image]: http://img.badgesize.io/https://unpkg.com/@eslint-sets/eslint-config/index.js?compression=gzip&label=gzip%20size:%20JS
60
+ [gzip-url]: http://img.badgesize.io/https://unpkg.com/@eslint-sets/eslint-config/index.js?compression=gzip&label=gzip%20size:%20JS
61
+ [license-image]: https://img.shields.io/badge/License-MIT-blue.svg
62
+ [license-url]: LICENSE
63
+ [sonar-image]: https://sonarcloud.io/api/project_badges/quality_gate?project=saqqdy_eslint-sets
64
+ [sonar-url]: https://sonarcloud.io/dashboard?id=saqqdy_eslint-sets
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * @eslint-sets/eslint-config v4.0.0-beta.10
3
+ * Eslint config all sets
4
+ * (c) 2021-2023 saqqdy<https://github.com/saqqdy>
5
+ * Released under the MIT License.
6
+ */
7
+ 'use strict';
8
+
9
+ const config = {
10
+ extends: ["@eslint-sets/eslint-config-react", "@eslint-sets/eslint-config-vue"]
11
+ };
12
+
13
+ module.exports = config;
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@eslint-sets/eslint-config",
3
+ "description": "Eslint config all sets",
4
+ "version": "4.0.0-beta.10",
5
+ "main": "./index.js",
6
+ "scripts": {},
7
+ "directories": {
8
+ "es": "es",
9
+ "lib": "lib",
10
+ "src": "src",
11
+ "typings": "typings"
12
+ },
13
+ "dependencies": {
14
+ "@babel/eslint-parser": "^7.19.1",
15
+ "@eslint-sets/eslint-config-react": "4.0.0-beta.10",
16
+ "@eslint-sets/eslint-config-vue": "4.0.0-beta.10",
17
+ "@typescript-eslint/eslint-plugin": "^5.36.2",
18
+ "@typescript-eslint/parser": "^5.36.2",
19
+ "eslint-config-prettier": "^8.5.0",
20
+ "eslint-plugin-eslint-comments": "^3.2.0",
21
+ "eslint-plugin-html": "^7.1.0",
22
+ "eslint-plugin-import": "^2.26.0",
23
+ "eslint-plugin-jsdoc": "^39.3.6",
24
+ "eslint-plugin-jsonc": "^2.4.0",
25
+ "eslint-plugin-markdown": "^3.0.0",
26
+ "eslint-plugin-n": "^15.2.5",
27
+ "eslint-plugin-prettier": "^4.2.1",
28
+ "eslint-plugin-promise": "^5.2.0",
29
+ "eslint-plugin-react": "^7.31.7",
30
+ "eslint-plugin-react-hooks": "^4.6.0",
31
+ "eslint-plugin-tsdoc": "^0.2.16",
32
+ "eslint-plugin-unicorn": "^40.1.0",
33
+ "eslint-plugin-vitest-globals": "^1.2.0",
34
+ "eslint-plugin-vue": "^9.8.0",
35
+ "eslint-plugin-vue-scoped-css": "^2.2.0",
36
+ "eslint-plugin-yml": "^1.3.0",
37
+ "jsonc-eslint-parser": "^2.1.0",
38
+ "vue-eslint-parser": "^9.1.0",
39
+ "yaml-eslint-parser": "^1.1.0"
40
+ },
41
+ "devDependencies": {
42
+ "eslint": "^7.32.0",
43
+ "prettier": "^2.8.1",
44
+ "typescript": "~4.8.4"
45
+ },
46
+ "peerDependencies": {
47
+ "eslint": ">=7.4.0",
48
+ "prettier": ">=2.0.0",
49
+ "typescript": ">=3.5.0"
50
+ },
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "git+https://github.com/saqqdy/eslint-sets.git",
54
+ "directory": "packages/all"
55
+ },
56
+ "pnpm": {
57
+ "peerDependencyRules": {
58
+ "ignoreMissing": [
59
+ "@babel/core",
60
+ "webpack"
61
+ ],
62
+ "allowedVersions": {
63
+ "eslint": ">=7.4.0"
64
+ }
65
+ }
66
+ },
67
+ "publishConfig": {
68
+ "registry": "https://registry.npmjs.org",
69
+ "access": "public"
70
+ },
71
+ "keywords": [
72
+ "eslint-sets",
73
+ "git",
74
+ "tool"
75
+ ],
76
+ "author": "saqqdy <https://github.com/saqqdy>",
77
+ "license": "MIT",
78
+ "bugs": {
79
+ "url": "https://github.com/saqqdy/eslint-sets/issues"
80
+ },
81
+ "homepage": "https://github.com/saqqdy/eslint-sets/tree/master/packages/all#readme"
82
+ }