Skip to content

Commit 5c2bd9b

Browse files
authored
chore: sort json (#29)
1 parent 9de154b commit 5c2bd9b

6 files changed

+220
-51
lines changed

.prettierrc.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"printWidth": 120,
3-
"trailingComma": "all",
4-
"tabWidth": 2,
5-
"semi": true,
6-
"singleQuote": false,
7-
"endOfLine": "auto",
82
"arrowParens": "avoid",
3+
"endOfLine": "auto",
94
"overrides": [
105
{
116
"files": "*.json",
127
"options": {
138
"printWidth": 80
149
}
1510
}
16-
]
11+
],
12+
"printWidth": 120,
13+
"semi": true,
14+
"singleQuote": false,
15+
"tabWidth": 2,
16+
"trailingComma": "all"
1717
}

eslint.config.mjs

+37-29
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,46 @@ import jsEslint from "@eslint/js";
22
import gitignore from "eslint-config-flat-gitignore";
33
import eslintConfigPrettier from "eslint-config-prettier";
44
import importX from "eslint-plugin-import-x";
5+
import jsonc from "eslint-plugin-jsonc";
56
import perfectionist from "eslint-plugin-perfectionist";
67
import tsEslint from "typescript-eslint";
78

89
export default tsEslint.config(
9-
jsEslint.configs.recommended,
10-
...tsEslint.configs.recommended,
11-
eslintConfigPrettier,
12-
importX.flatConfigs.recommended,
13-
perfectionist.configs["recommended-natural"],
1410
gitignore(),
11+
eslintConfigPrettier,
1512
{
13+
extends: [
14+
jsEslint.configs.recommended,
15+
...tsEslint.configs.recommended,
16+
importX.flatConfigs.recommended,
17+
perfectionist.configs["recommended-natural"],
18+
],
19+
files: ["**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}"],
1620
languageOptions: {
1721
ecmaVersion: "latest",
1822
globals: {
1923
console: true,
2024
process: true,
2125
},
26+
parser: tsEslint.parser,
2227
sourceType: "module",
2328
},
24-
rules: {
25-
"prefer-const": "off",
26-
"sort-imports": "off",
29+
plugins: {
30+
"@typescript-eslint": tsEslint.plugin,
2731
},
28-
},
29-
{
3032
rules: {
33+
"@typescript-eslint/consistent-type-imports": ["error", { fixStyle: "inline-type-imports" }],
34+
"@typescript-eslint/no-empty-interface": "off",
35+
"@typescript-eslint/no-non-null-assertion": "off",
36+
"@typescript-eslint/no-unused-vars": [
37+
"error",
38+
{
39+
argsIgnorePattern: "^_",
40+
destructuredArrayIgnorePattern: "^_",
41+
ignoreRestSiblings: true,
42+
varsIgnorePattern: "^_",
43+
},
44+
],
3145
"import-x/consistent-type-specifier-style": ["error", "prefer-inline"],
3246
"import-x/no-duplicates": ["error", { considerQueryString: true, "prefer-inline": true }],
3347
"import-x/no-unresolved": "off",
@@ -46,29 +60,23 @@ export default tsEslint.config(
4660
],
4761
},
4862
],
63+
"prefer-const": "off",
64+
"sort-imports": "off",
4965
},
5066
},
5167
{
52-
files: ["**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}"],
53-
languageOptions: {
54-
parser: tsEslint.parser,
55-
},
56-
plugins: {
57-
"@typescript-eslint": tsEslint.plugin,
58-
},
68+
extends: [...jsonc.configs["flat/recommended-with-json"]],
69+
files: [
70+
"src/**/*.json",
71+
"scripts/**/*.json",
72+
"tsconfig.json",
73+
".prettierrc.json",
74+
".prettierrc",
75+
"typedoc.json",
76+
"mangle-cache.json",
77+
],
5978
rules: {
60-
"@typescript-eslint/consistent-type-imports": ["error", { fixStyle: "inline-type-imports" }],
61-
"@typescript-eslint/no-empty-interface": "off",
62-
"@typescript-eslint/no-non-null-assertion": "off",
63-
"@typescript-eslint/no-unused-vars": [
64-
"error",
65-
{
66-
argsIgnorePattern: "^_",
67-
destructuredArrayIgnorePattern: "^_",
68-
ignoreRestSiblings: true,
69-
varsIgnorePattern: "^_",
70-
},
71-
],
79+
"jsonc/sort-keys": ["error", "asc", { caseSensitive: true, minKeys: 2, natural: true }],
7280
},
7381
},
7482
);

package-lock.json

+159
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"eslint-config-flat-gitignore": "^0.3.0",
5050
"eslint-config-prettier": "^9.1.0",
5151
"eslint-plugin-import-x": "^4.6.1",
52+
"eslint-plugin-jsonc": "^2.18.2",
5253
"eslint-plugin-perfectionist": "^4.6.0",
5354
"gzip-size": "^7.0.0",
5455
"prettier": "^3.4.2",

tsconfig.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
{
22
"compilerOptions": {
33
"declaration": true,
4-
"target": "ESNext",
5-
"module": "ESNext",
6-
"moduleResolution": "Node",
74
"esModuleInterop": true,
5+
"forceConsistentCasingInFileNames": true,
86
"isolatedModules": true,
7+
"lib": ["DOM", "ESNext"],
8+
"module": "ESNext",
9+
"moduleResolution": "Node",
910
"noFallthroughCasesInSwitch": true,
10-
"noUnusedParameters": true,
1111
"noImplicitOverride": true,
12-
"forceConsistentCasingInFileNames": true,
13-
"strict": true,
14-
"skipLibCheck": true,
12+
"noUnusedParameters": true,
13+
"outDir": "dist",
1514
"resolveJsonModule": true,
16-
"lib": ["DOM", "ESNext"],
17-
"outDir": "dist"
15+
"skipLibCheck": true,
16+
"strict": true,
17+
"stripInternal": true,
18+
"target": "ESNext"
1819
},
1920
"include": ["src/**/*"]
2021
}

typedoc.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["./src/index.ts"],
4-
"out": "docs",
3+
"cleanOutputDir": true,
54
"customCss": "./assets/docs.css",
6-
"visibilityFilters": {},
5+
"entryPoints": ["./src/index.ts"],
6+
"excludeInternal": true,
77
"excludePrivate": true,
88
"excludeProtected": true,
9-
"excludeInternal": true,
10-
"cleanOutputDir": true,
9+
"hideGenerator": true,
1110
"includeVersion": true,
12-
"hideGenerator": true
11+
"out": "docs",
12+
"visibilityFilters": {}
1313
}

0 commit comments

Comments
 (0)