Compare commits
4 Commits
1.0.0
...
f835d22269
| Author | SHA1 | Date | |
|---|---|---|---|
| f835d22269 | |||
| 7979d2db3e | |||
|
|
feb3b31b43 | ||
| 4d1a953099 |
@@ -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 }}
|
||||||
|
|||||||
7
index.js
7
index.js
@@ -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',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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": {
|
||||||
|
|||||||
@@ -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',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user