18 changed files with 1532 additions and 1224 deletions
@ -1,27 +0,0 @@ |
|||
name: Nightly |
|||
on: |
|||
schedule: |
|||
- cron: 0 8 * * 1-5 |
|||
workflow_dispatch: {} |
|||
|
|||
jobs: |
|||
trunk_check: |
|||
name: Trunk Check Upload |
|||
runs-on: ubuntu-latest |
|||
|
|||
steps: |
|||
- name: Checkout |
|||
uses: actions/checkout@v3 |
|||
|
|||
- name: Setup pnpm |
|||
uses: pnpm/[email protected] |
|||
with: |
|||
version: latest |
|||
|
|||
- name: Install Dependencies |
|||
run: pnpm install |
|||
|
|||
- name: Trunk Check |
|||
uses: trunk-io/trunk-action@v1 |
|||
with: |
|||
trunk-token: ${{ secrets.TRUNK_TOKEN }} |
|||
@ -1,7 +0,0 @@ |
|||
*out |
|||
*logs |
|||
*actions |
|||
*notifications |
|||
plugins |
|||
user_trunk.yaml |
|||
user.yaml |
|||
@ -1,10 +0,0 @@ |
|||
# Autoformatter friendly markdownlint config (all formatting rules disabled) |
|||
default: true |
|||
blank_lines: false |
|||
bullet: false |
|||
html: false |
|||
indentation: false |
|||
line_length: false |
|||
spaces: false |
|||
url: false |
|||
whitespace: false |
|||
@ -1,4 +0,0 @@ |
|||
# Ignore artifacts: |
|||
dist |
|||
pnpm-lock.yaml |
|||
stats.html |
|||
@ -1,4 +0,0 @@ |
|||
module.exports = { |
|||
trailingComma: "none", |
|||
plugins: [require("prettier-plugin-tailwindcss")] |
|||
}; |
|||
@ -1,14 +0,0 @@ |
|||
module.exports = { |
|||
plugins: [ |
|||
{ |
|||
name: "preset-default", |
|||
params: { |
|||
overrides: { |
|||
removeViewBox: false, // https://github.com/svg/svgo/issues/1128
|
|||
sortAttrs: true, |
|||
removeOffCanvasPaths: true |
|||
} |
|||
} |
|||
} |
|||
] |
|||
}; |
|||
@ -1,26 +0,0 @@ |
|||
version: 0.1 |
|||
cli: |
|||
version: 1.3.2 |
|||
plugins: |
|||
sources: |
|||
- id: trunk |
|||
ref: v0.0.8 |
|||
uri: https://github.com/trunk-io/plugins |
|||
lint: |
|||
enabled: |
|||
- [email protected] |
|||
- [email protected] |
|||
- git-diff-check |
|||
- [email protected] |
|||
- [email protected] |
|||
runtimes: |
|||
enabled: |
|||
- [email protected] |
|||
- [email protected] |
|||
actions: |
|||
disabled: |
|||
- trunk-announce |
|||
- trunk-check-pre-push |
|||
- trunk-fmt-pre-commit |
|||
enabled: |
|||
- trunk-upgrade-available |
|||
@ -1,3 +1,3 @@ |
|||
{ |
|||
"recommendations": ["bradlc.vscode-tailwindcss"] |
|||
"recommendations": ["bradlc.vscode-tailwindcss", "biomejs.biome"] |
|||
} |
|||
|
|||
@ -1,4 +1,4 @@ |
|||
{ |
|||
"editor.defaultFormatter": "rome.rome", |
|||
"editor.formatOnSave": true |
|||
"editor.defaultFormatter": "biomejs.biome", |
|||
"editor.formatOnSave": true |
|||
} |
|||
@ -0,0 +1,18 @@ |
|||
{ |
|||
"$schema": "https://biomejs.dev/schemas/1.3.3/schema.json", |
|||
"formatter": { |
|||
"enabled": true, |
|||
"indentStyle": "space", |
|||
"indentWidth": 2 |
|||
}, |
|||
"organizeImports": { |
|||
"enabled": true |
|||
}, |
|||
"linter": { |
|||
"enabled": true, |
|||
"rules": { |
|||
"all": true |
|||
|
|||
} |
|||
} |
|||
} |
|||
@ -1,12 +0,0 @@ |
|||
import react from "eslint-plugin-react"; |
|||
|
|||
export default [ |
|||
"eslint:all", |
|||
{ |
|||
files: ["src/**/*.{ts,tsx}"], |
|||
rules: { |
|||
semi: "error", |
|||
"prefer-const": "error" |
|||
} |
|||
} |
|||
]; |
|||
File diff suppressed because it is too large
@ -1,23 +0,0 @@ |
|||
{ |
|||
"$schema": "./node_modules/rome/configuration_schema.json", |
|||
"formatter": { |
|||
"enabled": true, |
|||
"indentStyle": "space", |
|||
"indentSize": 2 |
|||
}, |
|||
"linter": { |
|||
"enabled": true, |
|||
"rules": { |
|||
"recommended": true |
|||
} |
|||
}, |
|||
"organizeImports": { |
|||
"enabled": true |
|||
}, |
|||
"files": { |
|||
"ignore": [ |
|||
"node_modules", |
|||
"dist" |
|||
] |
|||
} |
|||
} |
|||
Loading…
Reference in new issue