Skip to content

Commit

Permalink
Initialize project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshay Kumar committed Jul 26, 2021
1 parent d10b73a commit 41cd3c4
Show file tree
Hide file tree
Showing 16 changed files with 1,351 additions and 154 deletions.
40 changes: 6 additions & 34 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,38 +1,10 @@
# 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
[*.{js,py}]
[{src,scripts}/**.{ts,json,js}]
end_of_line = crlf
charset = utf-8

# 4 tab indentation
[*.py]
indent_style = tab
indent_size = 4

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# Indentation override for all JS under lib directory
[src/**.js]
indent_style = tab
indent_size = 2

# Indentation override for all JS under lib directory
[src/**.ts]
indent_style = tab
indent_size = 2

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml,tsconfig.json}]
indent_style = tab
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
dist
.env
Loading

0 comments on commit 41cd3c4

Please sign in to comment.