mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
Adding prettier.
This commit is contained in:
parent
1c62eabe0c
commit
e260e19a50
3 changed files with 20 additions and 4 deletions
4
ui/.prettierrc.js
vendored
Normal file
4
ui/.prettierrc.js
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
module.exports = Object.assign(require('eslint-plugin-jane/prettier-ts'), {
|
||||
arrowParens: 'avoid',
|
||||
semi: true,
|
||||
});
|
15
ui/package.json
vendored
15
ui/package.json
vendored
|
@ -32,6 +32,7 @@
|
|||
"markdown-it-container": "^2.0.0",
|
||||
"markdown-it-emoji": "^1.4.0",
|
||||
"moment": "^2.24.0",
|
||||
"prettier": "^1.18.2",
|
||||
"rxjs": "^6.4.0",
|
||||
"terser": "^3.17.0",
|
||||
"tributejs": "3.7.2",
|
||||
|
@ -58,18 +59,24 @@
|
|||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged",
|
||||
"pre-push": "npm run lint"
|
||||
"pre-push": "yarn run lint"
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"npm run lint"
|
||||
"prettier --write",
|
||||
"yarn run lint",
|
||||
"git add"
|
||||
],
|
||||
"*.ts": [
|
||||
"npm run lint"
|
||||
"prettier --write",
|
||||
"yarn run lint",
|
||||
"git add"
|
||||
],
|
||||
"*.tsx": [
|
||||
"npm run lint"
|
||||
"prettier --write",
|
||||
"yarn run lint",
|
||||
"git add"
|
||||
],
|
||||
"package.json": [
|
||||
"sortpack",
|
||||
|
|
5
ui/yarn.lock
vendored
5
ui/yarn.lock
vendored
|
@ -4177,6 +4177,11 @@ prettier-linter-helpers@^1.0.0:
|
|||
dependencies:
|
||||
fast-diff "^1.1.2"
|
||||
|
||||
prettier@^1.18.2:
|
||||
version "1.18.2"
|
||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"
|
||||
integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==
|
||||
|
||||
pretty-time@^0.2.0:
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/pretty-time/-/pretty-time-0.2.0.tgz#7a3bdec4049c620cd7c42b7f342b74d56e73d74e"
|
||||
|
|
Loading…
Reference in a new issue