File tree Expand file tree Collapse file tree 4 files changed +217
-243
lines changed Expand file tree Collapse file tree 4 files changed +217
-243
lines changed Original file line number Diff line number Diff line change 23
23
"package-no-sbt" : " yarn workspace @omega-edit/server package-no-sbt && yarn workspace @omega-edit/client package"
24
24
},
25
25
"devDependencies" : {
26
- "@types/chai" : " ^4.3.12 " ,
26
+ "@types/chai" : " ^5.2.2 " ,
27
27
"@types/mocha" : " ^10.0.10" ,
28
28
"@types/node" : " ^22.13.1" ,
29
- "chai" : " ^4.3.10 " ,
29
+ "chai" : " ^5.2.1 " ,
30
30
"copy-webpack-plugin" : " ^13.0.0" ,
31
- "eslint" : " ^8.57.0 " ,
31
+ "eslint" : " ^9.30.1 " ,
32
32
"eslint-config-prettier" : " ^10.0.1" ,
33
33
"eslint-plugin-prettier" : " ^5.2.3" ,
34
34
"mocha" : " ^10.8.2" ,
38
38
"typedoc" : " ^0.28.7" ,
39
39
"typescript" : " ^5.7.3" ,
40
40
"unzip-stream" : " ^0.3.4" ,
41
- "webpack" : " ^5.98.0 " ,
41
+ "webpack" : " ^5.100.1 " ,
42
42
"webpack-cli" : " ^6.0.1"
43
43
},
44
44
"prettier" : {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ const globals = require ( 'globals' )
2
+ const prettierPlugin = require ( 'eslint-plugin-prettier' )
3
+ const prettierConfig = require ( 'eslint-config-prettier' )
4
+
5
+ module . exports = [
6
+ {
7
+ plugins : { prettier : prettierPlugin } ,
8
+ rules : {
9
+ 'prettier/prettier' : 'error' ,
10
+ } ,
11
+ languageOptions : {
12
+ ecmaVersion : 2022 ,
13
+ sourceType : 'module' ,
14
+ globals : {
15
+ ...globals . browser ,
16
+ ...globals . node ,
17
+ ...globals . es2021 ,
18
+ } ,
19
+ } ,
20
+ } ,
21
+ prettierConfig ,
22
+ ]
You can’t perform that action at this time.
0 commit comments