From 8be85536ebfaf6cfa3fbf9102b97c64f43c54abc Mon Sep 17 00:00:00 2001 From: Karl-Philipp Wulfert Date: Wed, 6 Feb 2019 15:54:26 +0100 Subject: [PATCH] build: update configuration files --- .editorconfig | 2 -- .gitignore | 96 +++++++++++++++++++++++++++++++++++++++++++++++---- tslint.json | 2 +- 3 files changed, 91 insertions(+), 9 deletions(-) diff --git a/.editorconfig b/.editorconfig index 251c64e6..9a4062a7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,3 @@ -# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs # editorconfig.org root = true @@ -7,7 +6,6 @@ root = true indent_style = space indent_size = 2 -# We recommend you to keep these unchanged end_of_line = lf charset = utf-8 trim_trailing_whitespace = true diff --git a/.gitignore b/.gitignore index e8c8414f..c07b9dc8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,91 @@ -.vscode/ -.idea/ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories node_modules/ -coverage/ -*.js -*.js.map -lib/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +#DynamoDB Local files +.dynamodb/ + +########## end of https://github.com/github/gitignore/blob/master/Node.gitignore + +# ignore ide files +.idea +.vscode + +# ignore lib +lib + +# ignore docs +docs diff --git a/tslint.json b/tslint.json index 96870d13..f125abb0 100644 --- a/tslint.json +++ b/tslint.json @@ -1,3 +1,3 @@ { "extends": "./node_modules/@openstapps/configuration/tslint.json" -} \ No newline at end of file +}