Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add prettier action #4

Merged
merged 1 commit into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/prettier_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Prettier Auto-Format

on:
push:
branches:
- master

jobs:
prettier:
runs-on: ubuntu-latest

steps:
- name: Check Out Repository
uses: actions/checkout@v2

- name: Install Prettier
run: npm install prettier --global

- name: Display Prettier Version
run: prettier --version

- name: Run Prettier Auto-Format
run: prettier --write .
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.yml
14 changes: 14 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"proseWrap": "preserve",
"semi": false,
"endOfLine": "lf"
}

2 changes: 2 additions & 0 deletions evaluations/AdMeta_1_0xCaso.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Evaluation


- **Status:** Accepted
- **Application Document:** https://github.com/w3f/Grants-Program/blob/master/applications/AdMeta.md
- **Milestone:** 1
Expand All @@ -20,6 +21,7 @@
<br/>

## General Notes v2 - Jan 11, 2023

The Testing Guide has been updated, it's findable in the WebApp [README](https://github.com/AdMetaNetwork/admeta-webapp/blob/bb74d090d815bb9af5cfb9314968672bffa54ffa/README.md).

## General Notes v1 - Jan 9, 2023
Expand Down
Loading