Skip to content

Commit

Permalink
️️⚡️ BUMP ⚡️ 5 files 18(+) 5(-)
Browse files Browse the repository at this point in the history
  • Loading branch information
borestad committed Feb 5, 2024
1 parent 0696a4c commit 373548d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .cron/jobs/example2.job.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno run -A

import { $ } from '../deps.ts'
import { $ } from 'deps.ts'

await $`echo hello`
15 changes: 14 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"source.organizeImports": "never"
},

"editor.codeLens": false,
"editor.codeLens": true,
"editor.defaultFormatter": "denoland.vscode-deno",
"editor.formatOnSave": false,
"editor.formatOnSaveMode": "file",
Expand All @@ -47,6 +47,19 @@
"yaml",
"toml"
],
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
"files.associations": {
"deno.json": "jsonc",
"dprint.json": "jsonc"
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
root := `git rev-parse --show-toplevel`

default:
FORCE_COLOR=1 {{root}}/.cron/jobs/example1.ts
FORCE_COLOR=1 {{root}}/.cron/jobs/example1.job.ts

4 changes: 2 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import antfu from '@antfu/eslint-config'
export default antfu({
// Enable stylistic formatting rules
stylistic: {
indent: 2, // 4, or 'tab'
quotes: 'single', // or 'double'
indent: 2,
quotes: 'single',
},

// Or customize the stylistic rules
Expand Down

0 comments on commit 373548d

Please sign in to comment.