@meistrari/mise-en-place 2.1.2 → 2.2.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/dist/eslint.mjs +9 -10
- package/package.json +43 -43
- package/tsconfig.base.json +17 -16
package/dist/eslint.mjs
CHANGED
|
@@ -18,16 +18,19 @@ function getTsConfig() {
|
|
|
18
18
|
const eslintConfig = antfu(
|
|
19
19
|
{
|
|
20
20
|
stylistic: {
|
|
21
|
-
indent: 4
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
indent: 4,
|
|
22
|
+
quotes: "single",
|
|
23
|
+
semi: false,
|
|
24
|
+
overrides: {
|
|
25
|
+
"style/quotes": ["error", "single", {
|
|
26
|
+
avoidEscape: true
|
|
27
|
+
}]
|
|
28
|
+
}
|
|
24
29
|
},
|
|
25
30
|
// Only lint changed lines when running in CI
|
|
26
31
|
// This speeds up the linting process significantly and also allows us to
|
|
27
32
|
// rollout new rules gradually.
|
|
28
|
-
...isCI ? {
|
|
29
|
-
processor: eslintPluginDiff.processors.ci
|
|
30
|
-
} : void 0,
|
|
33
|
+
...isCI ? { processor: eslintPluginDiff.processors.ci } : void 0,
|
|
31
34
|
typescript: getTsConfig(),
|
|
32
35
|
ignores: [
|
|
33
36
|
".github",
|
|
@@ -53,10 +56,6 @@ const eslintConfig = antfu(
|
|
|
53
56
|
requireLast: true
|
|
54
57
|
}
|
|
55
58
|
}],
|
|
56
|
-
"style/quotes": ["error", "single", {
|
|
57
|
-
avoidEscape: true,
|
|
58
|
-
allowTemplateLiterals: "avoidEscape"
|
|
59
|
-
}],
|
|
60
59
|
"antfu/no-top-level-await": "off",
|
|
61
60
|
"sort-imports": "off",
|
|
62
61
|
"perfectionist/sort-imports": "off",
|
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "@meistrari/mise-en-place",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/meistrari/mise-en-place.git"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "unbuild"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"mise-en-place": "dist/cli.mjs"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
"./eslint": {
|
|
17
|
+
"types": "./dist/eslint.d.ts",
|
|
18
|
+
"import": "./dist/eslint.mjs"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
".editorconfig",
|
|
23
|
+
"Makefile",
|
|
24
|
+
"dist",
|
|
25
|
+
"scripts",
|
|
26
|
+
"tsconfig.base.json"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [],
|
|
29
|
+
"author": "",
|
|
30
|
+
"license": "ISC",
|
|
31
|
+
"type": "module",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/meistrari/mise-en-place/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/meistrari/mise-en-place#readme",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@antfu/eslint-config": "6.2.0",
|
|
38
|
+
"eslint": "9.39.1",
|
|
39
|
+
"eslint-plugin-diff": "2.0.3",
|
|
40
|
+
"eslint-plugin-drizzle": "0.2.3"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "24.10.1",
|
|
44
|
+
"unbuild": "3.6.1"
|
|
19
45
|
}
|
|
20
|
-
},
|
|
21
|
-
"files": [
|
|
22
|
-
"dist",
|
|
23
|
-
"Makefile",
|
|
24
|
-
".editorconfig",
|
|
25
|
-
"tsconfig.base.json",
|
|
26
|
-
"scripts"
|
|
27
|
-
],
|
|
28
|
-
"keywords": [],
|
|
29
|
-
"author": "",
|
|
30
|
-
"license": "ISC",
|
|
31
|
-
"type": "module",
|
|
32
|
-
"bugs": {
|
|
33
|
-
"url": "https://github.com/meistrari/mise-en-place/issues"
|
|
34
|
-
},
|
|
35
|
-
"homepage": "https://github.com/meistrari/mise-en-place#readme",
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@antfu/eslint-config": "6.2.0",
|
|
38
|
-
"eslint": "9.39.1",
|
|
39
|
-
"eslint-plugin-diff": "2.0.3",
|
|
40
|
-
"eslint-plugin-drizzle": "0.2.3"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/node": "24.10.1",
|
|
44
|
-
"unbuild": "3.6.1"
|
|
45
|
-
}
|
|
46
46
|
}
|
package/tsconfig.base.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"strict": true,
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
"allowUnreachableCode": false,
|
|
6
|
+
"allowUnusedLabels": false,
|
|
7
|
+
"exactOptionalPropertyTypes": false,
|
|
8
|
+
"noImplicitOverride": true,
|
|
9
|
+
"noImplicitReturns": true,
|
|
10
|
+
"noPropertyAccessFromIndexSignature": false,
|
|
11
|
+
"noUncheckedIndexedAccess": true,
|
|
12
|
+
"noUnusedLocals": true,
|
|
13
|
+
"noUnusedParameters": true,
|
|
14
|
+
"noFallthroughCasesInSwitch": true,
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
"skipLibCheck": true
|
|
17
|
+
},
|
|
18
|
+
"exclude": [
|
|
19
|
+
"*.stories.ts"
|
|
20
|
+
]
|
|
20
21
|
}
|