@plumile/eslint-config-typescript 0.1.5 → 0.1.9

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.
Files changed (2) hide show
  1. package/index.js +2 -7
  2. package/package.json +12 -12
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
- // Requires operator at the beginning of the line in multiline statements
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
- '@stylistic-eslint/func-call-spacing': ['error', 'never'],
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.5",
4
+ "version": "0.1.9",
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.32.0"
25
+ "@typescript-eslint/parser": "8.37.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@stylistic/eslint-plugin": "4.2.0",
28
+ "@stylistic/eslint-plugin": "5.2.0",
29
29
  "eslint": "9.19.0",
30
- "eslint-plugin-jsdoc": "50.6.14",
30
+ "eslint-plugin-jsdoc": "51.4.1",
31
31
  "eslint-plugin-jsx-a11y": "6.10.2",
32
- "eslint-plugin-n": "17.18.0",
32
+ "eslint-plugin-n": "17.21.0",
33
33
  "eslint-plugin-react": "7.37.5",
34
34
  "eslint-plugin-react-hooks": "5.2.0",
35
- "eslint-plugin-sonarjs": "3.0.2"
35
+ "eslint-plugin-sonarjs": "3.0.4"
36
36
  },
37
37
  "peerDependencies": {
38
- "@stylistic/eslint-plugin": "4.2.0",
39
- "@typescript-eslint/eslint-plugin": ">=8.32.0",
38
+ "@stylistic/eslint-plugin": "5.2.0",
39
+ "@typescript-eslint/eslint-plugin": ">=8.37.0",
40
40
  "eslint": "9.x.x",
41
- "eslint-plugin-jsdoc": ">=50.6.14",
41
+ "eslint-plugin-jsdoc": ">=51.4.1",
42
42
  "eslint-plugin-jsx-a11y": ">=6.10.2",
43
- "eslint-plugin-n": "17.18.0",
43
+ "eslint-plugin-n": "17.21.0",
44
44
  "eslint-plugin-react": ">=7.37.5",
45
45
  "eslint-plugin-react-hooks": "5.2.0",
46
- "eslint-plugin-sonarjs": ">=3.0.2"
46
+ "eslint-plugin-sonarjs": ">=3.0.4"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "20c67ce949e1d2212091086644a71879d531d19b"
51
+ "gitHead": "ff106905b70933cf627b08aff9b68ad442845f38"
52
52
  }