Skip to content

Commit

Permalink
📝 fix typos (#60)
Browse files Browse the repository at this point in the history
Fixes typos across multiple files.
  • Loading branch information
gbaierle authored Dec 7, 2024
1 parent c7299fa commit c1b00c3
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* https://prettier.io/docs/en/
* Prettier configuration file
* In order to update the this config, update @code-style/code-style
* In order to update the config, update @code-style/code-style
*/
import config from '@code-style/code-style/prettierrc';
export default config;
2 changes: 1 addition & 1 deletion packages/create-configs/.eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# In order to update the this config, update:
# In order to update the config, update:
# @code-style/eslint-config
# @code-style/eslint-config-node
# @code-style/eslint-config-cli
Expand Down
2 changes: 1 addition & 1 deletion packages/create-configs/src/steps/formatting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export async function create_prettier_config(
/**
* https://prettier.io/docs/en/
* Prettier configuration file
* In order to update the this config, update @code-style/code-style
* In order to update the config, update @code-style/code-style
*/
import config from '${deps.d.depend('@code-style/code-style', { v })}/prettierrc';
export default config;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function _generate_base_ts_config({

return {
content: stripIndent`
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
${JSON.stringify(config, null, 2)}
`,
dependencies: deps,
Expand Down
4 changes: 2 additions & 2 deletions packages/create-configs/src/steps/lint-configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export function _generate_eslint_config({

return {
content: [
`# In order to update the this config, update:`,
`# In order to update the config, update:`,
_generate_dependency_list(config)
.map((p) => `# ${p}`)
.join('\n'),
Expand Down Expand Up @@ -195,7 +195,7 @@ export function _generate_stylelint_config(languages: Language[]): ConfigFile {

return {
content: [
`# In order to update the this config, update ${config.extends.join(', ')}`,
`# In order to update the config, update ${config.extends.join(', ')}`,
stringify(config),
].join('\n'),
dependencies: deps,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-configs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-esmodule/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-jest/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-nextjs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-node/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-react/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-typescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/.eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# In order to update the this config, update:
# In order to update the config, update:
# @code-style/eslint-config
# @code-style/eslint-config-node
# @code-style/eslint-config-cli
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// In order to update the this config, update @code-style/typescript-configs
// In order to update the config, update @code-style/typescript-configs
{
"extends": [
"@code-style/typescript-configs/roles/node",
Expand Down

0 comments on commit c1b00c3

Please sign in to comment.