Skip to content

Commit

Permalink
Fix prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
anubra266 committed Jan 23, 2024
1 parent 8bb8b60 commit 8459e0a
Show file tree
Hide file tree
Showing 65 changed files with 2,667 additions and 2,666 deletions.
52 changes: 26 additions & 26 deletions .github/composite-actions/install/action.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: 'Install'
description: 'Sets up Node.js and runs install'

runs:
using: composite
steps:
- uses: pnpm/[email protected]
with:
version: 7

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'

- name: Setup Git User
shell: bash
run: |
git config --global user.email "[email protected]"
git config --global user.name "Segun Adebayo"
- name: Install dependencies
shell: bash
run: pnpm install
name: 'Install'
description: 'Sets up Node.js and runs install'

runs:
using: composite
steps:
- uses: pnpm/[email protected]
with:
version: 7

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'

- name: Setup Git User
shell: bash
run: |
git config --global user.email "[email protected]"
git config --global user.name "Segun Adebayo"
- name: Install dependencies
shell: bash
run: pnpm install
22 changes: 11 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'pnpm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'weekly'
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'pnpm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: 'weekly'
136 changes: 68 additions & 68 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
name: Quality

on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run Prettier
run: pnpm prettier

tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run tests
run: pnpm test

eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run ESLint
run: pnpm lint
env:
NODE_OPTIONS: '--max-old-space-size=4096'

types:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run TypeScript type check
run: pnpm typecheck
name: Quality

on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run Prettier
run: pnpm prettier

tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run tests
run: pnpm test

eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run ESLint
run: pnpm lint
env:
NODE_OPTIONS: '--max-old-space-size=4096'

types:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install
uses: ./.github/composite-actions/install

- name: Run TypeScript type check
run: pnpm typecheck
21 changes: 11 additions & 10 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"jsxSingleQuote": false,
"proseWrap": "always",
"semi": false,
"tabWidth": 2,
"trailingComma": "all"
}
{
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"jsxSingleQuote": false,
"proseWrap": "always",
"semi": false,
"tabWidth": 2,
"trailingComma": "all",
"endOfLine": "crlf"
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# ESLint plugin for Panda CSS

ESLint plugin for Panda CSS
# ESLint plugin for Panda CSS

ESLint plugin for Panda CSS
48 changes: 24 additions & 24 deletions fixture/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "@pandacss/fixture",
"version": "0.27.3",
"private": true,
"description": "Test fixtures for Panda CSS",
"main": "src/index.ts",
"types": "src/index.ts",
"author": "Segun Adebayo <[email protected]>",
"devDependencies": {
"hookable": "5.5.3",
"postcss": "^8.4.33"
},
"dependencies": {
"@pandacss/config": "^0.27.3",
"@pandacss/core": "^0.27.3",
"@pandacss/generator": "^0.27.3",
"@pandacss/node": "^0.27.3",
"@pandacss/preset-base": "^0.27.3",
"@pandacss/preset-panda": "^0.27.3",
"@pandacss/shared": "^0.27.3",
"@pandacss/token-dictionary": "^0.27.3",
"@pandacss/types": "^0.27.3"
}
}
{
"name": "@pandacss/fixture",
"version": "0.27.3",
"private": true,
"description": "Test fixtures for Panda CSS",
"main": "src/index.ts",
"types": "src/index.ts",
"author": "Segun Adebayo <[email protected]>",
"devDependencies": {
"hookable": "5.5.3",
"postcss": "^8.4.33"
},
"dependencies": {
"@pandacss/config": "^0.27.3",
"@pandacss/core": "^0.27.3",
"@pandacss/generator": "^0.27.3",
"@pandacss/node": "^0.27.3",
"@pandacss/preset-base": "^0.27.3",
"@pandacss/preset-panda": "^0.27.3",
"@pandacss/shared": "^0.27.3",
"@pandacss/token-dictionary": "^0.27.3",
"@pandacss/types": "^0.27.3"
}
}
Loading

0 comments on commit 8459e0a

Please sign in to comment.