Skip to content

Commit 768c04f

Browse files
author
mateusz-titz
committed
Initial commit with stuff
0 parents  commit 768c04f

15 files changed

+7525
-0
lines changed

.eslintrc.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
module.exports = {
2+
extends: [
3+
'eslint:recommended',
4+
'prettier',
5+
'prettier/react',
6+
'plugin:prettier/recommended',
7+
],
8+
plugins: ['react', 'prettier'],
9+
rules: {
10+
'prettier/prettier': 'error',
11+
'react/react-in-jsx-scope': 'off',
12+
},
13+
env: {
14+
browser: true,
15+
node: true,
16+
},
17+
parserOptions: {
18+
ecmaVersion: 2018,
19+
sourceType: 'module',
20+
ecmaFeatures: {
21+
jsx: true,
22+
},
23+
},
24+
};

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# next.js build output
2+
.next
3+
# dotenv environment variables file (build for Zeit Now)
4+
.env
5+
.env.build
6+
7+
node_modules
8+
9+
# intelliJ
10+
.idea

.prettierrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
singleQuote: true,
3+
};

0 commit comments

Comments
 (0)