File tree Expand file tree Collapse file tree 7 files changed +24
-9
lines changed
Expand file tree Collapse file tree 7 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 22! /.idea /codeStyles /
33! /.idea /codeStyles /*
44! /.idea /google-java-format.xml
5+ ! /.idea /prettier.xml
Original file line number Diff line number Diff line change 1- src / css / AnsiTheme.css
1+ / dist /
Original file line number Diff line number Diff line change 11{
2- "singleQuote" : true ,
3- "semi" : false ,
4- "tabWidth" : 2 ,
5- "trailingComma" : " none" ,
6- "arrowParens" : " avoid"
2+ "printWidth" : 100
73}
Original file line number Diff line number Diff line change 55 "scripts" : {
66 "serve" : " vue-cli-service serve" ,
77 "build" : " vue-cli-service build" ,
8- "lint" : " vue-cli-service lint --no-fix"
8+ "lint" : " vue-cli-service lint --no-fix" ,
9+ "fmt" : " prettier . --write"
910 },
1011 "dependencies" : {
1112 "@types/dygraphs" : " ^1.1.11" ,
4748 "eslint-plugin-promise" : " 6.1.1" ,
4849 "eslint-plugin-standard" : " 5.0.0" ,
4950 "eslint-plugin-vue" : " 9.9.0" ,
50- "prettier" : " ^2.8.4 " ,
51+ "prettier" : " ^3.6.2 " ,
5152 "sass" : " ~1.59.3" ,
5253 "sass-loader" : " ^13.2.0" ,
5354 "typescript" : " ~5.0.2" ,
Original file line number Diff line number Diff line change @@ -5602,11 +5602,16 @@ prettier-linter-helpers@^1.0.0:
56025602 dependencies :
56035603 fast-diff "^1.1.2"
56045604
5605- " prettier@^1.18.2 || ^2.0.0" , prettier@^2.8.4 :
5605+ " prettier@^1.18.2 || ^2.0.0 " :
56065606 version "2.8.4"
56075607 resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3"
56085608 integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==
56095609
5610+ prettier@^3.6.2 :
5611+ version "3.6.2"
5612+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393"
5613+ integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==
5614+
56105615pretty-error@^4.0.0 :
56115616 version "4.0.0"
56125617 resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6"
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -euo pipefail
33
4+ pushd frontend
5+ yarnpkg install --ignore-engines
6+ yarnpkg run fmt
7+ popd
8+
49pushd backend
510mvn spotless:apply
611popd
You can’t perform that action at this time.
0 commit comments