Skip to content

Commit 74dc610

Browse files
committed
production: + tests
0 parents  commit 74dc610

File tree

80 files changed

+14739
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+14739
-0
lines changed

.env.example

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# API
3+
#
4+
API_ORIGIN_URL=https://travel-app-api.glitch.me/api/v1
5+
#
6+
# APPLICATION
7+
#
8+
APP_URL=http://localhost:3000
9+
#
10+
# TESTING
11+
#
12+
UNSTABLE_TEST_RETRIES_NUMBER=1

.eslintrc.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
env:
2+
node: true
3+
es2021: true
4+
5+
parserOptions:
6+
ecmaVersion: 2021
7+
sourceType: module
8+
9+
extends:
10+
- eslint:recommended
11+
- plugin:import/recommended
12+
- plugin:import/typescript
13+
- plugin:@typescript-eslint/recommended
14+
15+
rules:
16+
no-multiple-empty-lines:
17+
- error
18+
- max: 1
19+
no-var:
20+
- error
21+
no-console:
22+
- error
23+
arrow-parens:
24+
- error
25+
- always
26+
curly:
27+
- error
28+
- all
29+
no-else-return:
30+
- error
31+
- allowElseIf: false
32+
no-duplicate-imports:
33+
- error
34+
- includeExports: true
35+
'@typescript-eslint/explicit-function-return-type':
36+
- error
37+
- allowTypedFunctionExpressions: true
38+
'@typescript-eslint/quotes':
39+
- error
40+
- single
41+
'@typescript-eslint/object-curly-spacing':
42+
- error
43+
- always
44+
'@typescript-eslint/semi':
45+
- error
46+
- always
47+
'@typescript-eslint/comma-dangle':
48+
- error
49+
- always-multiline
50+
'@typescript-eslint/no-use-before-define':
51+
- error
52+
'@typescript-eslint/no-unused-vars':
53+
- error
54+
- vars: all
55+
args: after-used
56+
argsIgnorePattern: ^_
57+
caughtErrors: all
58+
ignoreRestSiblings: true
59+
import/no-unresolved:
60+
- off
61+
import/no-named-as-default-member:
62+
- off
63+
import/no-default-export:
64+
- error

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# dependencies
2+
node_modules
3+
.pnp
4+
.pnp.js
5+
6+
# intellij
7+
.idea
8+
9+
# production
10+
build
11+
12+
# misc
13+
.DS_Store
14+
.env
15+
16+
npm-debug.log*
17+
yarn-debug.log*
18+
yarn-error.log*

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict=true
2+
save-exact=true

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16

.prettierrc.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
printWidth: 80
2+
tabWidth: 2
3+
useTabs: false
4+
semi: true
5+
singleQuote: true
6+
quoteProps: preserve
7+
trailingComma: all
8+
bracketSpacing: true
9+
arrowParens: always

0 commit comments

Comments
 (0)