From 2c70515b7297021ecbcb2197a6ed9b8cfaa521e7 Mon Sep 17 00:00:00 2001 From: Torsten Brendgen Date: Thu, 16 Jul 2026 23:02:59 +0200 Subject: [PATCH] =?UTF-8?q?Aktualisiere=20.gitignore=20f=C3=BCr=20verbesse?= =?UTF-8?q?rte=20Ignorierung=20von=20Abh=C3=A4ngigkeiten,=20Build-Ausgaben?= =?UTF-8?q?=20und=20Protokolldateien?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 40 +++++++++++++++++++++++++++++++++++++++- gulpfile.js | 5 ++++- tslint.json | 4 +++- 3 files changed, 46 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 15193f5..497988f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,47 @@ +# Dependencies and local tools node_modules/ +.tools/ + +# SPFx build output lib/ dist/ temp/ release/ +solution/ +sharepoint/solution/ *.sppkg *.tgz -npm-debug.log* + +# Test output +coverage/ + +# Generated TypeScript files +*.resx.ts +*.scss.ts + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Local environment files +.env +.env.* +!.env.example + +# Visual Studio and IDE files +.vs/ +.idea/ +.ntvs_analysis.dat +*.suo +*.user +bin/ +obj/ + +# Operating system files +.DS_Store +Thumbs.db +Desktop.ini diff --git a/gulpfile.js b/gulpfile.js index 7e9e979..a998467 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -2,5 +2,8 @@ const build = require('@microsoft/sp-build-web'); -build.initialize(require('gulp')); +build.tslint.setConfig({ + lintConfig: require('./tslint.json') +}); +build.initialize(require('gulp')); diff --git a/tslint.json b/tslint.json index cad9c50..a74f9f3 100644 --- a/tslint.json +++ b/tslint.json @@ -1,8 +1,10 @@ { "extends": "./node_modules/@microsoft/sp-tslint-rules/base-tslint.json", "rules": { + "max-line-length": false, + "member-ordering": false, "no-any": false, + "no-consecutive-blank-lines": false, "no-string-based-set-timeout": false } } -