@kitql/eslint-config 0.3.3 → 0.3.5
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/.prettierrc.cjs +2 -1
- package/index.cjs +1 -13
- package/package.json +14 -14
package/.prettierrc.cjs
CHANGED
|
@@ -2,6 +2,7 @@ const { plugins, ...prettierConfig } = require('@theguild/prettier-config')
|
|
|
2
2
|
|
|
3
3
|
module.exports = {
|
|
4
4
|
...prettierConfig,
|
|
5
|
+
singleQuote: true,
|
|
5
6
|
semi: false,
|
|
6
7
|
arrowParens: 'always',
|
|
7
8
|
plugins: [
|
|
@@ -15,7 +16,7 @@ module.exports = {
|
|
|
15
16
|
'',
|
|
16
17
|
'^(\\$houdini)(.*)$', // special
|
|
17
18
|
'^(remult)(.*)$', // special
|
|
18
|
-
'^(
|
|
19
|
+
'^(firstly)(.*)$', // special
|
|
19
20
|
'^(@kitql)(.*)$', // special
|
|
20
21
|
'',
|
|
21
22
|
'^(\\$env)(.*)$', // special sveltekit
|
package/index.cjs
CHANGED
|
@@ -28,7 +28,7 @@ module.exports = {
|
|
|
28
28
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
29
29
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
30
30
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
31
|
-
'@typescript-eslint/
|
|
31
|
+
'@typescript-eslint/no-unused-expressions': 'off',
|
|
32
32
|
},
|
|
33
33
|
overrides: [
|
|
34
34
|
{
|
|
@@ -38,18 +38,6 @@ module.exports = {
|
|
|
38
38
|
parser: '@typescript-eslint/parser',
|
|
39
39
|
},
|
|
40
40
|
},
|
|
41
|
-
{
|
|
42
|
-
files: ['*.graphql', '*.gql'],
|
|
43
|
-
parserOptions: {
|
|
44
|
-
operations: '**/*.gql',
|
|
45
|
-
schema: '**/*.graphql',
|
|
46
|
-
},
|
|
47
|
-
extends: ['plugin:@graphql-eslint/schema-all', 'plugin:@graphql-eslint/operations-all'],
|
|
48
|
-
rules: {
|
|
49
|
-
'@graphql-eslint/alphabetize': 'off',
|
|
50
|
-
'@graphql-eslint/no-one-place-fragments': 'off',
|
|
51
|
-
},
|
|
52
|
-
},
|
|
53
41
|
],
|
|
54
42
|
ignorePatterns: ['*.md'],
|
|
55
43
|
parserOptions: {
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"eslint",
|
|
7
7
|
"eslint-config"
|
|
8
8
|
],
|
|
9
|
-
"version": "0.3.
|
|
9
|
+
"version": "0.3.5",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"type": "module",
|
|
12
12
|
"repository": {
|
|
@@ -20,24 +20,24 @@
|
|
|
20
20
|
},
|
|
21
21
|
"main": "index.cjs",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@graphql-eslint/eslint-plugin": "3.20.1",
|
|
24
23
|
"@kitql/helpers": "0.8.9",
|
|
25
|
-
"@theguild/eslint-config": "^0.
|
|
26
|
-
"@theguild/prettier-config": "2.0.
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "
|
|
28
|
-
"@typescript-eslint/parser": "
|
|
29
|
-
"@
|
|
30
|
-
"
|
|
24
|
+
"@theguild/eslint-config": "^0.12.0",
|
|
25
|
+
"@theguild/prettier-config": "2.0.7",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "8.2.0",
|
|
27
|
+
"@typescript-eslint/parser": "8.2.0",
|
|
28
|
+
"@typescript-eslint/typescript-estree": "8.2.0",
|
|
29
|
+
"@vue/compiler-sfc": "3.4.38",
|
|
30
|
+
"commander": "^12.1.0",
|
|
31
31
|
"eslint": "8.57.0",
|
|
32
32
|
"eslint-config-prettier": "9.1.0",
|
|
33
|
-
"eslint-plugin-svelte": "2.
|
|
33
|
+
"eslint-plugin-svelte": "2.43.0",
|
|
34
34
|
"eslint-plugin-unused-imports": "3.2.0",
|
|
35
|
-
"prettier": "3.2
|
|
35
|
+
"prettier": "3.3.2",
|
|
36
36
|
"prettier-plugin-sh": "0.14.0",
|
|
37
|
-
"prettier-plugin-svelte": "3.2.
|
|
38
|
-
"prettier-plugin-tailwindcss": "0.
|
|
39
|
-
"svelte": "4.2.
|
|
40
|
-
"typescript": "5.4
|
|
37
|
+
"prettier-plugin-svelte": "3.2.6",
|
|
38
|
+
"prettier-plugin-tailwindcss": "0.6.6",
|
|
39
|
+
"svelte": "4.2.18",
|
|
40
|
+
"typescript": "5.5.4"
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false,
|
|
43
43
|
"publishConfig": {
|