Skip to content

Commit

Permalink
Format configuration files for improved readability and consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremytenjo committed Jan 30, 2025
1 parent b8d995b commit f8be263
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
15 changes: 7 additions & 8 deletions example/app/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
module.exports = {
"printWidth": 90,
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "always"
printWidth: 90,
trailingComma: 'all',
tabWidth: 2,
semi: false,
singleQuote: true,
jsxSingleQuote: true,
arrowParens: 'always',
}

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@
"vsce": "2.15.0",
"vscode-test": "^1.5.0"
}
}
}
26 changes: 13 additions & 13 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"lib": ["es2020"],
"outDir": "out",
"sourceMap": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"rootDirs": ["src", "utils"],
},
"exclude": ["node_modules", ".vscode-test", "example", "scripts"]
}
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"lib": ["es2020"],
"outDir": "out",
"sourceMap": true,
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"rootDirs": ["src", "utils"]
},
"exclude": ["node_modules", ".vscode-test", "example", "scripts"]
}

0 comments on commit f8be263

Please sign in to comment.