Skip to content

Commit 2d7ffb4

Browse files
committed
chore: add standard dotfiles
1 parent e313035 commit 2d7ffb4

7 files changed

+65
-0
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
root = true
2+
3+
[*.graphql]
4+
insert_final_newline = true

.env.example

Whitespace-only changes.

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": [
3+
"@autocloud"
4+
],
5+
"ignorePatterns": ["*.graphql", "src/types/generated.ts", "tests"]
6+
}

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
dist
3+
.vscode
4+
.yalc
5+
yalc.lock
6+
.env
7+
!.env.example
8+
.terraform*
9+
*.tfstate*
10+
tfplan

.npmignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*
2+
!dist/**/*
3+
!package.json
4+
!LICENSE
5+
!AUTHORS
6+
!CHANGELOG.md
7+
!CODE_OF_CONDUCT.md
8+
!CODEOWNERS
9+
!CONTRIBUTING.md
10+
!README.md

.prettierrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"arrowParens": "avoid"
5+
}

.releaserc.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
branches:
3+
- name: main
4+
plugins:
5+
- "@semantic-release/commit-analyzer"
6+
- "@semantic-release/release-notes-generator"
7+
- - "@semantic-release/changelog"
8+
- changelogFile: CHANGELOG.md
9+
- - "@semantic-release/git"
10+
- assets:
11+
- CHANGELOG.md
12+
- package.json
13+
- - "@semantic-release/npm"
14+
- npmPublish: true
15+
- "@semantic-release/gitlab"
16+
verifyConditions:
17+
- "@semantic-release/changelog"
18+
- "@semantic-release/gitlab"
19+
- "@semantic-release/npm"
20+
prepare:
21+
- "@semantic-release/changelog"
22+
- "@semantic-release/npm"
23+
- - "@semantic-release/git"
24+
- message: "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
25+
publish:
26+
- "@semantic-release/gitlab"
27+
- "@semantic-release/npm"
28+
success: false
29+
fail: false
30+
tagFormat: "${version}"

0 commit comments

Comments
 (0)