@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.
- package/README.md +16 -77
- package/package.json +29 -6
- package/.github/workflows/ci.yml +0 -14
- package/css/README.md +0 -385
- package/css/packages/stylelint/LICENSE +0 -21
- package/css/packages/stylelint/README.md +0 -27
- package/css/packages/stylelint/eslint.config.js +0 -3
- package/css/packages/stylelint/index.js +0 -84
- package/css/packages/stylelint/package-lock.json +0 -4042
- package/css/packages/stylelint/package.json +0 -42
- package/html/README.md +0 -98
- package/javascript/README.md +0 -3255
- package/javascript/packages/eslint-base/LICENSE +0 -21
- package/javascript/packages/eslint-base/README.md +0 -27
- package/javascript/packages/eslint-base/eslint.config.js +0 -3
- package/javascript/packages/eslint-base/index.js +0 -1084
- package/javascript/packages/eslint-base/package-lock.json +0 -2653
- package/javascript/packages/eslint-base/package.json +0 -36
- package/javascript/packages/eslint-react/LICENSE +0 -21
- package/javascript/packages/eslint-react/README.md +0 -27
- package/javascript/packages/eslint-react/eslint.config.js +0 -3
- package/javascript/packages/eslint-react/index.js +0 -526
- package/javascript/packages/eslint-react/package-lock.json +0 -3035
- package/javascript/packages/eslint-react/package.json +0 -42
- package/react/README.md +0 -726
- package/scripts/for-each-package +0 -12
- package/test/css.js +0 -36
- package/test/index.js +0 -7
- package/test/js.js +0 -35
- package/test/utils.js +0 -63
- package/tooling/packages/biome/LICENSE +0 -21
- package/tooling/packages/biome/README.md +0 -27
- package/tooling/packages/biome/package-lock.json +0 -183
- package/tooling/packages/biome/package.json +0 -38
- package/tsconfig.json +0 -31
- package/typescript/README.md +0 -66
- package/typescript/packages/eslint-typescript-base/LICENSE +0 -21
- package/typescript/packages/eslint-typescript-base/README.md +0 -27
- package/typescript/packages/eslint-typescript-base/eslint.config.js +0 -3
- package/typescript/packages/eslint-typescript-base/index.js +0 -272
- package/typescript/packages/eslint-typescript-base/package-lock.json +0 -3215
- package/typescript/packages/eslint-typescript-base/package.json +0 -41
- package/typescript/packages/eslint-typescript-base/tsconfig.json +0 -30
- package/typescript/packages/eslint-typescript-react/LICENSE +0 -21
- package/typescript/packages/eslint-typescript-react/README.md +0 -27
- package/typescript/packages/eslint-typescript-react/eslint.config.js +0 -3
- package/typescript/packages/eslint-typescript-react/index.js +0 -75
- package/typescript/packages/eslint-typescript-react/package-lock.json +0 -3630
- package/typescript/packages/eslint-typescript-react/package.json +0 -41
- package/typescript/packages/eslint-typescript-react/tsconfig.json +0 -30
- /package/{tooling/packages/biome/biome.json → biome.json} +0 -0
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "eslint-config-entva-typescript",
|
|
3
|
-
"description": "Shareable typescript styleguide config for eslint",
|
|
4
|
-
"author": "Max Degterev <max@degterev.me>",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"readmeFilename": "README.md",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/entva/styleguide"
|
|
10
|
-
},
|
|
11
|
-
"bugs": "https://github.com/entva/styleguide/issues",
|
|
12
|
-
"version": "2.1.0",
|
|
13
|
-
"keywords": [
|
|
14
|
-
"linter",
|
|
15
|
-
"config",
|
|
16
|
-
"eslint",
|
|
17
|
-
"typescript"
|
|
18
|
-
],
|
|
19
|
-
"type": "module",
|
|
20
|
-
"main": "index.js",
|
|
21
|
-
"scripts": {
|
|
22
|
-
"reinstall": "rm -rf node_modules package-lock.json && npm install",
|
|
23
|
-
"test": "node ../../../test ./test js ts",
|
|
24
|
-
"rules": "node_modules/.bin/eslint --print-config file.tsx > eslint-ruleset-output.json",
|
|
25
|
-
"prepublishOnly": "npm test"
|
|
26
|
-
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"react": "^19.0.0",
|
|
29
|
-
"eslint": "^9.16.0"
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"@typescript-eslint/parser": "^8.18.0",
|
|
33
|
-
"eslint-config-entva": "^2.2.0",
|
|
34
|
-
"eslint-config-entva-typescript-base": "^2.2.0",
|
|
35
|
-
"eslint-plugin-import": "^2.31.0",
|
|
36
|
-
"globals": "^15.13.0"
|
|
37
|
-
},
|
|
38
|
-
"peerDependencies": {
|
|
39
|
-
"eslint": "^9.x.x"
|
|
40
|
-
}
|
|
41
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"lib": [
|
|
5
|
-
"dom",
|
|
6
|
-
"dom.iterable",
|
|
7
|
-
"esnext"
|
|
8
|
-
],
|
|
9
|
-
"allowJs": true,
|
|
10
|
-
"skipLibCheck": true,
|
|
11
|
-
"strict": true,
|
|
12
|
-
"forceConsistentCasingInFileNames": true,
|
|
13
|
-
"noEmit": true,
|
|
14
|
-
"esModuleInterop": true,
|
|
15
|
-
"module": "esnext",
|
|
16
|
-
"moduleResolution": "node",
|
|
17
|
-
"resolveJsonModule": true,
|
|
18
|
-
"isolatedModules": true,
|
|
19
|
-
"jsx": "preserve",
|
|
20
|
-
"incremental": true
|
|
21
|
-
},
|
|
22
|
-
"include": [
|
|
23
|
-
"**/*.ts",
|
|
24
|
-
"**/*.tsx",
|
|
25
|
-
"**/*.js"
|
|
26
|
-
],
|
|
27
|
-
"exclude": [
|
|
28
|
-
"node_modules"
|
|
29
|
-
]
|
|
30
|
-
}
|
|
File without changes
|