Skip to content

Commit c63c579

Browse files
author
Mathieu Bour
authored
chore(git): merge PR #6 from dev
chore(release): release version 1.0.0
2 parents f243b64 + 97d3ce7 commit c63c579

15 files changed

Lines changed: 11508 additions & 405 deletions

.eslintrc.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
parserOptions: {
4+
project: 'tsconfig.json',
5+
sourceType: 'module',
6+
},
7+
plugins: ['@typescript-eslint/eslint-plugin'],
8+
extends: [
9+
'plugin:@typescript-eslint/eslint-recommended',
10+
'plugin:@typescript-eslint/recommended',
11+
'prettier',
12+
'prettier/@typescript-eslint',
13+
],
14+
root: true,
15+
env: {
16+
node: true,
17+
jest: true,
18+
},
19+
rules: {
20+
'@typescript-eslint/interface-name-prefix': 'off',
21+
'@typescript-eslint/explicit-function-return-type': 'off',
22+
'@typescript-eslint/explicit-module-boundary-types': 'off',
23+
'@typescript-eslint/no-explicit-any': 'off',
24+
},
25+
};

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@v1
1414
- name: Setup Node.js 12
15-
uses: actions/setup-node@v1.2.0
15+
uses: actions/setup-node@v1
1616
with:
1717
node-version: 12.x
1818
- name: Install Sentry CLI

.huskyrc.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

.huskyrc.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pre-commit: npm run build && git add dist/; lint-staged

.lintstagedrc.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}:
2+
- prettier --write

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"printWidth": 120
5+
}

.standard-commitrc.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"types": [
3+
"feat",
4+
"fix",
5+
"chore",
6+
"build",
7+
"ci",
8+
"docs",
9+
"perf",
10+
"refactor",
11+
"revert",
12+
"style",
13+
"test"
14+
],
15+
"promptScope": "suggest",
16+
"scopes": "staged"
17+
}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## [Version 1.0.0](https://github.com/mathrix-education/setup-sentry-cli/releases/tag/1.0.0)
4+
- **security**(deps): bump [@actions/core](https://github.com/actions/toolkit/tree/main/packages/core) from 1.2.4 to 1.2.6 (fixes [GHSA-mfwh-5m23-j46w](https://github.com/actions/toolkit/security/advisories/GHSA-mfwh-5m23-j46w))
5+
- **fix**(ci): set setup-node version to @v1

dist/index.js

Lines changed: 9169 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)