Skip to content

Commit

Permalink
Run prettier fmt on all files
Browse files Browse the repository at this point in the history
Signed-off-by: Yoriyasu Yano <[email protected]>
  • Loading branch information
yorinasub17 committed Oct 18, 2023
1 parent 858cbb4 commit d259379
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
extends: ["eslint:recommended", "prettier"],
parserOptions: {
sourceType: "module",
allowImportExportEverywhere: true
allowImportExportEverywhere: true,
},
env: {
browser: true,
Expand Down
16 changes: 16 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

# Ignore docs
*.md
4 changes: 2 additions & 2 deletions rules/sample.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from "node:fs";
import { dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import { dirname } from "node:path";
import { fileURLToPath } from "node:url";

import { expect, test } from "@jest/globals";
import {
Expand Down

0 comments on commit d259379

Please sign in to comment.