add correct tab spacing to the files
Motivation: Some of the files that were boilerplates uses double spaces for tab. This causes inconsistency with IDEs, where tabs are usually defined with four spaces. Modification: Use tab for spacing where necessary. Result: No inconsistency concerning spacing. Pull-request: #6
This diff is collapsed.
{ | ||
"scripts": { | ||
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore", | ||
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore", | ||
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore", | ||
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore", | ||
"lint": "npm run lint:eslint && npm run lint:prettier", | ||
"format": "npm run format:eslint && npm run format:prettier", | ||
"test": "karma start", | ||
"test:coverage": "karma start --coverage", | ||
"test:watch": "karma start --auto-watch=true --single-run=false", | ||
"posttest": "node ci-analysis.js", | ||
"start": "es-dev-server --app-index index.html --node-resolve --open --watch" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"@open-wc/eslint-config": "^2.0.0", | ||
"@open-wc/prettier-config": "^0.1.10", | ||
"husky": "^1.0.0", | ||
"lint-staged": "^8.0.0", | ||
"@open-wc/testing-karma": "^3.0.0", | ||
"deepmerge": "^3.2.0", | ||
"@open-wc/testing": "^2.0.0", | ||
"es-dev-server": "^1.5.0", | ||
"sonarqube-scanner": "^2.6.0" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"@open-wc/eslint-config", | ||
"eslint-config-prettier" | ||
] | ||
}, | ||
"prettier": "@open-wc/prettier-config", | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
"scripts": { | ||
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore", | ||
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore", | ||
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore", | ||
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore", | ||
"lint": "npm run lint:eslint && npm run lint:prettier", | ||
"format": "npm run format:eslint && npm run format:prettier", | ||
"test": "karma start", | ||
"test:coverage": "karma start --coverage", | ||
"test:watch": "karma start --auto-watch=true --single-run=false", | ||
"posttest": "node ci-analysis.js", | ||
"start": "es-dev-server --app-index index.html --node-resolve --open --watch" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"@open-wc/eslint-config": "^2.0.0", | ||
"@open-wc/prettier-config": "^0.1.10", | ||
"husky": "^1.0.0", | ||
"lint-staged": "^8.0.0", | ||
"@open-wc/testing-karma": "^3.0.0", | ||
"deepmerge": "^3.2.0", | ||
"@open-wc/testing": "^2.0.0", | ||
"es-dev-server": "^1.5.0", | ||
"sonarqube-scanner": "^2.6.0" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"@open-wc/eslint-config", | ||
"eslint-config-prettier" | ||
] | ||
}, | ||
"prettier": "@open-wc/prettier-config", | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix", | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"name": "helmholtz-marketplace-webapp", | ||
"version": "0.0.1", | ||
"description": "A Web application for Helmholtz marketplace", | ||
"author": "HIFIS Technical Platform Core Team", | ||
"license": "AGPL-3.0", | ||
"dependencies": { | ||
"@material/mwc-icon-button": "0.14.1", | ||
"@material/mwc-top-app-bar-fixed": "0.14.1", | ||
"lit-element": "2.3.1", | ||
"lit-html": "1.2.1" | ||
} | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix", | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"name": "helmholtz-marketplace-webapp", | ||
"version": "0.0.1", | ||
"description": "A Web application for Helmholtz marketplace", | ||
"author": "HIFIS Technical Platform Core Team", | ||
"license": "AGPL-3.0", | ||
"dependencies": { | ||
"@material/mwc-icon-button": "0.14.1", | ||
"@material/mwc-top-app-bar-fixed": "0.14.1", | ||
"lit-element": "2.3.1", | ||
"lit-html": "1.2.1" | ||
} | ||
} |
Please register or sign in to comment