Skip to content

Commit 16f0d3b

Browse files
committed
Enable prettier
1 parent 6b0dc18 commit 16f0d3b

6 files changed

+71
-8
lines changed

.prettierrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"endOfLine": "auto",
3+
"htmlWhitespaceSensitivity": "ignore"
4+
}

war/.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
es2022: true
66
},
77
// Uses eslint default ruleset
8-
extends: "eslint:recommended",
8+
extends: ["eslint:recommended", "prettier"],
99
parserOptions: {
1010
sourceType: "module"
1111
},

war/.prettierignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# generated / build files
2+
.pnp.cjs
3+
.pnp.loader.mjs
4+
target/
5+
work/
6+
node/
7+
8+
.yarnrc.yml
9+
10+
# libraries / external deps / generated files
11+
src/main/js/plugin-setup-wizard/bootstrap-detached.js
12+
src/main/webapp/scripts/behavior.js
13+
src/main/webapp/bootstrap
14+
src/main/webapp/scripts/yui
15+
src/main/webapp/scripts/prototype.js
16+
src/main/fonts/font-awesome
17+
src/main/webapp/css/font-awesome
18+
src/main/fonts/google-fonts/roboto/css/roboto.css
19+
src/main/webapp/css/google-fonts/roboto/css/roboto.css
20+
src/main/fonts/icomoon/css/icomoon.css
21+
src/main/webapp/css/icomoon/css/icomoon.css
22+
src/main/webapp/jsbundles/
23+
24+
# test files that we don't need formatted
25+
../test/src/test/resources
26+
../test/jmh-report.json
27+
28+
# doesn't work, see https://github.com/prettier/prettier/issues/5340
29+
*.hbs
30+
31+
.yarn
32+
33+
# TODO not sure why this fails
34+
src/main/less/abstracts/theme.less

war/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"prod": "webpack --config webpack.config.js --mode=production",
1515
"build": "yarn prod",
1616
"start": "yarn dev --watch",
17-
"lint:js": "eslint . --ext js",
18-
"lint:js-ci": "eslint . --ext js -f checkstyle -o target/eslint-warnings.xml",
17+
"lint:js": "eslint . --ext js && prettier --check ../",
18+
"lint:js-ci": "eslint . --ext js -f checkstyle -o target/eslint-warnings.xml && prettier --check ../",
1919
"lint:css": "stylelint src/main/less",
2020
"lint:css-ci": "stylelint src/main/less --custom-formatter stylelint-formatter.js -o target/stylelint-warnings.xml",
21-
"lint:css:fix": "stylelint src/main/less --fix",
2221
"lint:ci": "yarn lint:js-ci && yarn lint:css-ci",
22+
"lint:fix": "prettier --write ../ && stylelint src/main/less --fix",
2323
"lint": "yarn lint:js && yarn lint:css"
2424
},
2525
"devDependencies": {
@@ -31,13 +31,15 @@
3131
"css-loader": "6.7.1",
3232
"css-minimizer-webpack-plugin": "4.0.0",
3333
"eslint": "8.22.0",
34+
"eslint-config-prettier": "8.5.0",
3435
"handlebars": "4.7.7",
3536
"handlebars-loader": "1.7.2",
3637
"less": "4.1.3",
3738
"less-loader": "11.0.0",
3839
"mini-css-extract-plugin": "2.6.1",
3940
"postcss": "8.4.16",
4041
"postcss-loader": "7.0.1",
42+
"prettier": "2.7.1",
4143
"style-loader": "3.3.1",
4244
"stylelint": "14.11.0",
4345
"stylelint-config-standard": "28.0.0",

war/stylelint-formatter.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/* eslint-env node */
2-
const reporter = require('stylelint-checkstyle-reporter')
2+
// TODO remove this file once https://github.com/stylelint/stylelint/issues/6100 is released
3+
const reporter = require("stylelint-checkstyle-reporter");
34

45
/**
5-
* @type {import('stylelint').Formatter}
6+
* @type {import("stylelint").Formatter}
67
*/
78
function formatter(results, returnValue) {
8-
returnValue.output = reporter(results)
9+
returnValue.output = reporter(results);
910

10-
return returnValue.output
11+
return returnValue.output;
1112
}
1213

1314
module.exports = formatter;

war/yarn.lock

+22
Original file line numberDiff line numberDiff line change
@@ -3061,6 +3061,17 @@ __metadata:
30613061
languageName: node
30623062
linkType: hard
30633063

3064+
"eslint-config-prettier@npm:8.5.0":
3065+
version: 8.5.0
3066+
resolution: "eslint-config-prettier@npm:8.5.0"
3067+
peerDependencies:
3068+
eslint: ">=7.0.0"
3069+
bin:
3070+
eslint-config-prettier: bin/cli.js
3071+
checksum: 0d0f5c32e7a0ad91249467ce71ca92394ccd343178277d318baf32063b79ea90216f4c81d1065d60f96366fdc60f151d4d68ae7811a58bd37228b84c2083f893
3072+
languageName: node
3073+
linkType: hard
3074+
30643075
"eslint-scope@npm:5.1.1":
30653076
version: 5.1.1
30663077
resolution: "eslint-scope@npm:5.1.1"
@@ -4027,6 +4038,7 @@ __metadata:
40274038
css-loader: 6.7.1
40284039
css-minimizer-webpack-plugin: 4.0.0
40294040
eslint: 8.22.0
4041+
eslint-config-prettier: 8.5.0
40304042
handlebars: 4.7.7
40314043
handlebars-loader: 1.7.2
40324044
hotkeys-js: 3.9.5
@@ -4039,6 +4051,7 @@ __metadata:
40394051
postcss: 8.4.16
40404052
postcss-less: 6.0.0
40414053
postcss-loader: 7.0.1
4054+
prettier: 2.7.1
40424055
sortablejs: 1.15.0
40434056
style-loader: 3.3.1
40444057
stylelint: 14.11.0
@@ -5466,6 +5479,15 @@ __metadata:
54665479
languageName: node
54675480
linkType: hard
54685481

5482+
"prettier@npm:2.7.1":
5483+
version: 2.7.1
5484+
resolution: "prettier@npm:2.7.1"
5485+
bin:
5486+
prettier: bin-prettier.js
5487+
checksum: 55a4409182260866ab31284d929b3cb961e5fdb91fe0d2e099dac92eaecec890f36e524b4c19e6ceae839c99c6d7195817579cdffc8e2c80da0cb794463a748b
5488+
languageName: node
5489+
linkType: hard
5490+
54695491
"promise-inflight@npm:^1.0.1":
54705492
version: 1.0.1
54715493
resolution: "promise-inflight@npm:1.0.1"

0 commit comments

Comments
 (0)