Skip to content

Commit

Permalink
Add .editorconfig, remove unnecessary vars
Browse files Browse the repository at this point in the history
  • Loading branch information
joonassandell committed Jul 26, 2024
1 parent 5577423 commit b6e5a7b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
7 changes: 0 additions & 7 deletions lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,3 @@ export const TRANS_SPRING_SLOW = {
stiffness: 100,
type: 'spring',
};

/* =======================================
* Environment variables
* ======================================= */

export const DEVELOPMENT = process.env.NODE_ENV === 'development';
export const PRODUCTION = process.env.NODE_ENV === 'production';

0 comments on commit b6e5a7b

Please sign in to comment.