File tree Expand file tree Collapse file tree 4 files changed +217
-9
lines changed Expand file tree Collapse file tree 4 files changed +217
-9
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "extends": "./.config/.eslintrc"
3
- }
2
+ "extends": "./.config/.eslintrc",
3
+ "plugins": ["prettier"],
4
+ "ignorePatterns": ["website"],
5
+ "rules": {
6
+ "prettier/prettier": "error"
7
+ }
8
+ }
Original file line number Diff line number Diff line change
1
+ name : Lint frontend
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ lint :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ - uses : actions/setup-node@v3
11
+ with :
12
+ node-version-file : ' .nvmrc'
13
+ cache : ' yarn'
14
+ - run : yarn install
15
+ - run : yarn lint
Original file line number Diff line number Diff line change 60
60
"copy-webpack-plugin" : " ^11.0.0" ,
61
61
"cspell" : " 6.30.2" ,
62
62
"css-loader" : " ^6.7.3" ,
63
+ "eslint-plugin-prettier" : " ^5.0.0" ,
63
64
"eslint-webpack-plugin" : " ^4.0.1" ,
64
65
"fork-ts-checker-webpack-plugin" : " ^8.0.0" ,
65
66
"glob" : " 10.3.6" ,
66
67
"identity-obj-proxy" : " 3.0.0" ,
67
68
"jest" : " ^29.5.0" ,
68
69
"jest-environment-jsdom" : " ^29.5.0" ,
69
- "prettier" : " ^2.8.7 " ,
70
+ "prettier" : " ^3.0.3 " ,
70
71
"react-virtualized-auto-sizer" : " ^1.0.4" ,
71
72
"replace-in-file-webpack-plugin" : " ^1.0.6" ,
72
73
"sass" : " 1.63.2" ,
You can’t perform that action at this time.
0 commit comments