-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c007e5
commit 7c0141d
Showing
16 changed files
with
1,641 additions
and
4,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# In order to avoid testing the generated folders. | ||
/coverage | ||
|
||
/build | ||
/out | ||
|
||
/node_modules | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
module.exports = { | ||
env: { | ||
node: true, | ||
browser: true, | ||
browser: true | ||
}, | ||
extends: ["airbnb", "plugin:prettier/recommended"], | ||
plugins: ["react"], | ||
rules: { | ||
"react/jsx-filename-extension": [1, { extensions: [".js", ".jsx"] }], | ||
"react/prop-types": 0, | ||
"import/no-extraneous-dependencies": ["error", { devDependencies: true }], | ||
"import/prefer-default-export": 0, // https://stackoverflow.com/q/54245654/2771889 | ||
"linebreak-style": ["error", process.platform === "win32" ? "windows" : "unix"], // // https://stackoverflow.com/q/39114446/2771889 | ||
"import/prefer-default-export": 0, | ||
"linebreak-style": ["error", process.platform === "win32" ? "windows" : "unix"], | ||
"import/prefer-default-export": 0, | ||
"react/jsx-one-expression-per-line": 0, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
# Node modules | ||
# node dependencies | ||
/node_modules | ||
|
||
# Generated build and out folder by next | ||
/build | ||
/out | ||
.next | ||
|
||
# Jest test coverage | ||
/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// VSCode needs to be restarted if Prettier config changes | ||
|
||
// If possible, settings should be kept in 1 place (i.e. `eslintrc`) | ||
// But in some cases ESLing and Prettier confuse eachother | ||
module.exports = { | ||
trailingComma: "es5", // Makes diffs nicer | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"editorconfig.editorconfig", | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"editor.formatOnSave": false, | ||
"eslint.autoFixOnSave": true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# c-hive.dev | ||
|
||
A Next.js SPA website to showcase ourselves: https://c-hive.gitlab.io/c-hive.dev/ | ||
|
||
## Local development | ||
|
||
```bash | ||
npm install | ||
npm run dev | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.