Skip to content

Commit cf8cad0

Browse files
author
Sergey Bekrin
committed
feat: initial commit
0 parents  commit cf8cad0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+11018
-0
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: 🐛 Bug report
3+
labels: ':bug: bug'
4+
about: Create a bug report to help us improve Spire
5+
---
6+
7+
## 🐛 Bug Report
8+
9+
Summary of the bug.
10+
11+
## Versions
12+
13+
- `node --version`:
14+
- `spire --version`:
15+
- `spire --debug`:
16+
17+
## How to reproduce
18+
19+
Steps to reproduce the behavior.
20+
21+
## Expected behavior
22+
23+
A clear description of expected behavior.

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: 🚀 Feature Proposal
3+
labels: ':rocket: feature request'
4+
about: Submit a proposal for a new Spire feature
5+
---
6+
7+
## 🚀 Feature Proposal
8+
9+
A clear description of proposed feature.
10+
11+
## Motivation
12+
13+
Please outline the motivation for the proposal.
14+
15+
## Example
16+
17+
Please provide an example for how this feature would be used.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 💬 Questions
3+
labels: ':speech_balloon: question'
4+
about: General questions about Spire ecosystem
5+
---
6+
7+
## 💬 Question

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!-- Hey there, thanks a lot for your contribution! Please add some details about your PR. -->
2+
3+
## Summary
4+
5+
What your changes solves or improves?
6+
7+
## Testing
8+
9+
Are there new tests needed?

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
.vscode/
3+
.DS_Store
4+
*.log

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: node_js
2+
node_js:
3+
- 8
4+
- 10
5+
cache: yarn
6+
script:
7+
- yarn lint
8+
- yarn test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./packages/spire/README.md

eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Keep this file for editor support
2+
module.exports = require('spire-plugin-eslint/config');
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# with-default-config
2+
3+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
4+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
5+
6+
- [with-default-config](#with-default-config)
7+
8+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
9+
10+
This example shows basic usage of Spire. Run `npx spire --help` for the list of
11+
commands.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "spire-example-with-default-config",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"lint": "spire lint"
7+
},
8+
"devDependencies": {
9+
"spire": "^1.1.2"
10+
}
11+
}

0 commit comments

Comments
 (0)