Skip to content

Commit

Permalink
chore: switched every config to LF as EOL char
Browse files Browse the repository at this point in the history
  • Loading branch information
MAXOUXAX committed Jan 29, 2024
1 parent 1eb6057 commit fd9189b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"arrowParens": "always",
"rangeStart": 0,
"proseWrap": "preserve",
"endOfLine": "crlf",
"endOfLine": "lf",
"singleAttributePerLine": false
}
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
}
},
"files.eol": "\n"
}

2 changes: 1 addition & 1 deletion backend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["error", 2],
"linebreak-style": ["warn", "windows"],
"linebreak-style": ["warn", "unix"],
"quotes": ["error", "double"],
"semi": ["error", "always"]
}
Expand Down
2 changes: 1 addition & 1 deletion expo/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["error", 2],
"linebreak-style": ["warn", "windows"],
"linebreak-style": ["warn", "unix"],
"quotes": ["error", "double"],
"semi": ["error", "always"]
}
Expand Down

0 comments on commit fd9189b

Please sign in to comment.