@eslint-sukka/eslint-plugin-sukka-full 0.0.0 → 8.0.0-beta.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.
@@ -0,0 +1,32 @@
1
+ import { Linter } from '@typescript-eslint/utils/ts-eslint';
2
+
3
+ declare const plugin: {
4
+ readonly configs: {
5
+ readonly node: {
6
+ readonly name: "@eslint-sukka/eslint-plugin-sukka-full node preset";
7
+ readonly ignores: any;
8
+ readonly plugins: {
9
+ readonly sukka: /*elided*/ any;
10
+ };
11
+ readonly rules: Linter.RulesRecord;
12
+ };
13
+ readonly comment: {
14
+ readonly name: "@eslint-sukka/eslint-plugin-sukka-full comments preset";
15
+ readonly plugins: {
16
+ readonly sukka: /*elided*/ any;
17
+ };
18
+ readonly rules: Linter.RulesRecord;
19
+ };
20
+ readonly regexp: {
21
+ readonly name: "@eslint-sukka/eslint-plugin-sukka-full regexp preset";
22
+ readonly ignores: any;
23
+ readonly plugins: {
24
+ readonly sukka: /*elided*/ any;
25
+ };
26
+ readonly rules: Linter.RulesRecord;
27
+ };
28
+ };
29
+ readonly rules: any;
30
+ };
31
+
32
+ export { plugin as default };
package/package.json CHANGED
@@ -1,12 +1,45 @@
1
1
  {
2
2
  "name": "@eslint-sukka/eslint-plugin-sukka-full",
3
- "version": "0.0.0",
4
- "description": "",
5
- "scripts": {},
6
- "main": "",
7
- "files": [],
8
- "keywords": [],
9
- "author": "SukkaW <https://skk.moe>",
3
+ "version": "8.0.0-beta.1",
4
+ "homepage": "https://github.com/SukkaW/eslint-config-sukka",
5
+ "repository": {
6
+ "url": "https://github.com/SukkaW/eslint-config-sukka",
7
+ "directory": "packages/eslint-plugin-sukka-full"
8
+ },
9
+ "main": "dist/index.cjs",
10
+ "types": "dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "require": "./dist/index.cjs",
18
+ "default": "./dist/index.cjs"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
10
22
  "license": "MIT",
11
- "dependencies": {}
12
- }
23
+ "dependencies": {
24
+ "@eslint-sukka/shared": "8.0.0-beta.1",
25
+ "eslint-plugin-sukka": "8.0.0-beta.1"
26
+ },
27
+ "devDependencies": {
28
+ "@masknet/eslint-plugin": "^0.4.0",
29
+ "eslint-plugin-unicorn": "^61.0.2",
30
+ "@eslint-sukka/rollup-config": "8.0.0-beta.1"
31
+ },
32
+ "peerDependencies": {
33
+ "eslint": "*",
34
+ "typescript": "*"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "typescript": {
38
+ "optional": true
39
+ }
40
+ },
41
+ "scripts": {
42
+ "test": "mocha --require @swc-node/register src/rules/**/*.test.ts",
43
+ "build": "rollup -c rollup.config.ts --configPlugin swc3"
44
+ }
45
+ }