1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-03 18:50:05 +00:00

chore(*): add lint fix command

This commit is contained in:
Krishna Acondy
2020-08-31 09:22:21 +01:00
parent 929d7b993b
commit 5efcb11b7d
3 changed files with 4 additions and 5 deletions

View File

@@ -5,7 +5,7 @@
"build": "rimraf build && webpack",
"package:lib": "npm run build && cp ./package.json build && cd build && npm version \"5.0.0\" && npm pack",
"publish:lib": "npm run build && cd build && npm publish",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint:fix": "npx prettier --write 'src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}'",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"prepublishOnly": "cp -r ./build/* . && rm -rf ./build",

View File

@@ -4,5 +4,5 @@
*/
export enum ServerType {
SASViya = "SASVIYA",
SAS9 = "SAS9",
SAS9 = "SAS9"
}

View File

@@ -3,7 +3,6 @@
*
*/
export interface UploadFile {
file: File;
fileName: string;
file: File;
fileName: string;
}