Skip to content

Commit

Permalink
Merge pull request #4 from Whisker17/feat/add-prettier-format
Browse files Browse the repository at this point in the history
feat: add prettier action
  • Loading branch information
Whisker17 committed Jul 27, 2023
2 parents 2fde20c + be56500 commit 55d234d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
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

0 comments on commit 55d234d

Please sign in to comment.