1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-06 00:03:29 +00:00

Merge commit '193434461dbd9c48fe5dcbad95693470aec422ac' into refactor/authService

This commit is contained in:
Thomas Rittson
2021-12-17 06:10:45 +10:00
3 changed files with 4 additions and 3 deletions

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
* text=auto eol=lf

View File

@@ -50,8 +50,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

View File

@@ -16,7 +16,7 @@
"clean": "rimraf dist/**/*",
"build": "npm run clean && ttsc",
"build:watch": "npm run clean && ttsc -watch",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts' && prettier --check .",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"prettier": "prettier --write .",
"test": "karma start ./spec/support/karma.conf.js --single-run",