From 4d1a953099116319c0ab8165d9274d8576422368 Mon Sep 17 00:00:00 2001 From: Sebastian Brenner Date: Sun, 21 Dec 2025 19:37:28 +0100 Subject: [PATCH] update rules --- package.json | 2 +- src/index.ts | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8402e6e..cc65a2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sebastianbrenner/eslint-config", - "version": "1.0.0", + "version": "1.0.1", "type": "module", "main": "./index.js", "scripts": { diff --git a/src/index.ts b/src/index.ts index 12c103c..c093a03 100644 --- a/src/index.ts +++ b/src/index.ts @@ -53,7 +53,12 @@ export default [ "unused-imports/no-unused-vars": [ "warn", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" } - ] + ], + '@stylistic/indent': ['error', 4], + '@stylistic/semi': ['error', 'always'], + '@stylistic/quotes': ['error', 'single', { avoidEscape: true }], + '@stylistic/no-trailing-spaces': 'error', + '@stylistic/no-multiple-empty-lines': 'error', } } ];