@plumile/eslint-config-typescript 0.1.7 → 0.1.11
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/LICENSE +1 -1
- package/index.js +2 -7
- package/package.json +12 -12
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Plumile
|
|
3
|
+
Copyright (c) Plumile and its affiliates.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/index.js
CHANGED
|
@@ -737,12 +737,7 @@ export default [
|
|
|
737
737
|
// require assignment operator shorthand where possible or prohibit it entirely
|
|
738
738
|
'operator-assignment': ['error', 'always'],
|
|
739
739
|
|
|
740
|
-
|
|
741
|
-
'@stylistic-eslint/operator-linebreak': [
|
|
742
|
-
'error',
|
|
743
|
-
'after',
|
|
744
|
-
{ overrides: { '?': 'before', ':': 'before' } },
|
|
745
|
-
],
|
|
740
|
+
'@stylistic-eslint/operator-linebreak': 0,
|
|
746
741
|
|
|
747
742
|
// disallow padding within blocks
|
|
748
743
|
'@stylistic-eslint/padded-blocks': [
|
|
@@ -1184,7 +1179,7 @@ export default [
|
|
|
1184
1179
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
1185
1180
|
'@typescript-eslint/explicit-member-accessibility': ['error'],
|
|
1186
1181
|
'@typescript-eslint/explicit-module-boundary-types': 2,
|
|
1187
|
-
'
|
|
1182
|
+
'@/func-call-spacing': ['error', 'never'],
|
|
1188
1183
|
'@stylistic-eslint/indent': 0,
|
|
1189
1184
|
'@stylistic-eslint/member-delimiter-style': ['error'],
|
|
1190
1185
|
'@typescript-eslint/member-ordering': ['error'],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Olivier Hardy <olivier@plumile.com>",
|
|
3
3
|
"name": "@plumile/eslint-config-typescript",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.11",
|
|
5
5
|
"description": "@plumile/eslint-config-typescript",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"type": "module",
|
|
@@ -22,31 +22,31 @@
|
|
|
22
22
|
"npm": ">=8.0.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@typescript-eslint/parser": "8.
|
|
25
|
+
"@typescript-eslint/parser": "8.39.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@stylistic/eslint-plugin": "
|
|
28
|
+
"@stylistic/eslint-plugin": "5.2.2",
|
|
29
29
|
"eslint": "9.19.0",
|
|
30
|
-
"eslint-plugin-jsdoc": "
|
|
30
|
+
"eslint-plugin-jsdoc": "52.0.3",
|
|
31
31
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
32
|
-
"eslint-plugin-n": "17.
|
|
32
|
+
"eslint-plugin-n": "17.21.3",
|
|
33
33
|
"eslint-plugin-react": "7.37.5",
|
|
34
34
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
35
|
-
"eslint-plugin-sonarjs": "3.0.
|
|
35
|
+
"eslint-plugin-sonarjs": "3.0.4"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@stylistic/eslint-plugin": "
|
|
39
|
-
"@typescript-eslint/eslint-plugin": ">=8.
|
|
38
|
+
"@stylistic/eslint-plugin": "5.2.2",
|
|
39
|
+
"@typescript-eslint/eslint-plugin": ">=8.39.0",
|
|
40
40
|
"eslint": "9.x.x",
|
|
41
|
-
"eslint-plugin-jsdoc": ">=
|
|
41
|
+
"eslint-plugin-jsdoc": ">=52.0.3",
|
|
42
42
|
"eslint-plugin-jsx-a11y": ">=6.10.2",
|
|
43
|
-
"eslint-plugin-n": "17.
|
|
43
|
+
"eslint-plugin-n": "17.21.3",
|
|
44
44
|
"eslint-plugin-react": ">=7.37.5",
|
|
45
45
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
46
|
-
"eslint-plugin-sonarjs": ">=3.0.
|
|
46
|
+
"eslint-plugin-sonarjs": ">=3.0.4"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "4d6ed018a61867a85574b4be87b8b67f96f3ac0f"
|
|
52
52
|
}
|