4 Commits

Author SHA1 Message Date
f835d22269 Merge branch 'main' of https://gitea.sebastianbrenner.dev/sebastianbrenner/eslint-cofig
All checks were successful
Build ESLint Config and Release / build-and-release (push) Successful in 9s
2025-12-21 19:40:33 +01:00
7979d2db3e update workflow 2025-12-21 19:40:32 +01:00
gitea-actions[bot]
feb3b31b43 chore: update generated index.js 2025-12-21 18:37:40 +00:00
4d1a953099 update rules
All checks were successful
Build ESLint Config and Release / build-and-release (push) Successful in 9s
2025-12-21 19:37:28 +01:00
4 changed files with 14 additions and 3 deletions

View File

@@ -49,4 +49,5 @@ jobs:
- name: Create release - name: Create release
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
name: ${{ steps.pkg.outputs.version }}
tag_name: ${{ steps.pkg.outputs.version }} tag_name: ${{ steps.pkg.outputs.version }}

View File

@@ -44,7 +44,12 @@ export default [
"unused-imports/no-unused-vars": [ "unused-imports/no-unused-vars": [
"warn", "warn",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" } { 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',
} }
} }
]; ];

View File

@@ -1,6 +1,6 @@
{ {
"name": "@sebastianbrenner/eslint-config", "name": "@sebastianbrenner/eslint-config",
"version": "1.0.0", "version": "1.0.1",
"type": "module", "type": "module",
"main": "./index.js", "main": "./index.js",
"scripts": { "scripts": {

View File

@@ -53,7 +53,12 @@ export default [
"unused-imports/no-unused-vars": [ "unused-imports/no-unused-vars": [
"warn", "warn",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" } { 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',
} }
} }
]; ];