Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
Merge branch 'dev-nextjs' into feat/auth-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
nmashchenko committed Sep 10, 2023
2 parents dc3a2c6 + 7b6d657 commit 01fb5d5
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 8 deletions.
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# EditorConfig is awesome: https://EditorConfig.org

# Top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset and indentation for TypeScript, JavaScript, CSS, HTML, and JSON files
[*.{ts,tsx,js,jsx,css,scss,less,html,json}]
charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
max_line_length = 100

# Max 100 character line length for markdown files (Airbnb's JavaScript style guide suggests a max line length of 100 characters)
[*.md]
max_line_length = 100
trim_trailing_whitespace = false
24 changes: 24 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Handle line endings automatically for files detected as text
# and ensure all files use LF.
* text=auto eol=lf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.zip binary
*.tar binary
*.gz binary

# Explicitly mark TypeScript and JavaScript files as text.
*.ts text
*.tsx text
*.js text
*.jsx text

# Explicitly mark Styles files as text.
*.css text
*.scss text
*.sass text
8 changes: 0 additions & 8 deletions .vscode/settings.json

This file was deleted.

0 comments on commit 01fb5d5

Please sign in to comment.