Skip to content

Commit

Permalink
add prettier config files
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-saini1 committed Oct 21, 2022
1 parent cb112a3 commit 11351e2
Show file tree
Hide file tree
Showing 94 changed files with 83,334 additions and 30,774 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Add contributors
on:
schedule:
- cron: '20 20 * * *'
- cron: "20 20 * * *"
# push:
# branches:
# - master
Expand All @@ -10,14 +10,14 @@ jobs:
add-contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: BobAnkh/add-contributors@master
with:
CONTRIBUTOR: '### Contributors'
COLUMN_PER_ROW: '6'
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
IMG_WIDTH: '100'
FONT_SIZE: '14'
PATH: '/README.md'
COMMIT_MESSAGE: 'docs(README): update contributors'
AVATAR_SHAPE: 'round'
- uses: actions/checkout@v2
- uses: BobAnkh/add-contributors@master
with:
CONTRIBUTOR: "### Contributors"
COLUMN_PER_ROW: "6"
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
IMG_WIDTH: "100"
FONT_SIZE: "14"
PATH: "/README.md"
COMMIT_MESSAGE: "docs(README): update contributors"
AVATAR_SHAPE: "round"
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
on:
push:
branches:
- main
push:
branches:
- main

jobs:
contrib-readme-job:
runs-on: ubuntu-latest
name: A job to automate contrib in readme
steps:
- name: Contribute List
uses: akhilmhdh/contributors-readme-action@v2.3.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
contrib-readme-job:
runs-on: ubuntu-latest
name: A job to automate contrib in readme
steps:
- name: Contribute List
uses: akhilmhdh/contributors-readme-action@v2.3.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package.json
package-lock.json

*.md
*.svg
*.lock
18 changes: 18 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"rangeStart": 0,
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto"
}
14 changes: 7 additions & 7 deletions css/Issues_hover.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* The below code is written on the latest PR and thats for the fix of styling */
/* Kindly merge it at the right place */
.issue-box{
transition: all .5s ease;
cursor: pointer;
.issue-box {
transition: all 0.5s ease;
cursor: pointer;
}
.issue-box:hover{
opacity: 0.8;
transform: translateY(-15px);
.issue-box:hover {
opacity: 0.8;
transform: translateY(-15px);
}
/* Everything is fine */
/* Everything is fine */
Loading

0 comments on commit 11351e2

Please sign in to comment.