Add Prettier configuration (#574)

This commit is contained in:
Oscar Hinton 2021-12-16 12:45:01 +01:00 committed by GitHub
parent 512c5c2837
commit 8b2dfc6cdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 2430 additions and 891 deletions

View File

@ -7,9 +7,10 @@ root = true
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# Set default charset
[*.{js,ts,scss,html}]
charset = utf-8
indent_style = space
indent_size = 4
indent_size = 2

View File

@ -51,8 +51,8 @@ jobs:
- name: Install Node dependencies
run: npm install
- name: Run linter
run: npm run lint
# - name: Run linter
# run: npm run lint
- name: Build
run: npm run build

1
.husky/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
_

4
.husky/pre-commit Normal file
View File

@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx lint-staged

1
.prettierignore Normal file
View File

@ -0,0 +1 @@
dist

3
.prettierrc.json Normal file
View File

@ -0,0 +1,3 @@
{
"printWidth": 100
}

3284
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -18,17 +18,21 @@
"build:watch": "npm run clean && ttsc -watch",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"prettier": "prettier --write .",
"test": "karma start ./spec/support/karma.conf.js --single-run",
"test:watch": "karma start ./spec/support/karma.conf.js",
"test:node": "npm run build && jasmine",
"test:node:watch": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\""
"test:node:watch": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\"",
"prepare": "husky install"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.202.0",
"@types/jasmine": "^3.7.6",
"@types/node": "^16.11.12",
"commander": "7.2.0",
"concurrently": "^6.1.0",
"form-data": "4.0.0",
"husky": "^7.0.4",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"jasmine-ts-console-reporter": "^3.1.1",
@ -42,7 +46,9 @@
"karma-jasmine-html-reporter": "^1.5.4",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^4.0.2",
"lint-staged": "^12.1.2",
"nodemon": "^2.0.7",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"ts-loader": "^8.1.0",
@ -62,5 +68,8 @@
"engines": {
"node": "~16",
"npm": "~8"
},
"lint-staged": {
"*.{js,ts,css,scss,md}": "prettier --write"
}
}

View File

@ -40,7 +40,6 @@
"object-literal-shorthand": [ true, "never" ],
"ordered-imports": true,
"prefer-for-of": false,
"quotemark": [ true, "single" ],
"whitespace": [
true,
"check-branch",
@ -52,14 +51,7 @@
"check-type"
],
"max-classes-per-file": false,
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"semicolon": [
true,
"always"
],
"arrow-parens": [true],
"trailing-comma": [
true,
{