Skip to content

Commit

Permalink
MVP (v0.9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tidus91 committed Nov 16, 2020
0 parents commit 6971592
Show file tree
Hide file tree
Showing 264 changed files with 22,843 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .env.exemple
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PGUSER=
PGPASSWORD=
PGHOST=

HOST=
PORT=
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
.env
dist/
sqitch.conf
images/
11 changes: 11 additions & 0 deletions FRONT/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/transform-runtime"
]
}
23 changes: 23 additions & 0 deletions FRONT/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# EditorConfig: https://EditorConfig.org

root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.html]
indent_style = tab
indent_size = 4

[*.js]
indent_style = space
indent_size = 2

[*.{css,sass,scss}]
indent_style = space
indent_size = 2

[*.json]
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions FRONT/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
dist/
config/
postcss.config.js
47 changes: 47 additions & 0 deletions FRONT/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true
},
"rules": {
"brace-style": ["error", "stroustrup"],
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-mixed-operators": [
"error",
{
"allowSamePrecedence": true
}
],
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/mouse-events-have-key-events": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"react/jsx-filename-extension": "off",
"react/forbid-prop-types": "off",
"react/no-access-state-in-setstate": "warn",
"react/jsx-one-expression-per-line": "off",
"react/destructuring-assignment": "warn",
"react/no-unescaped-entities": "off",
"react/jsx-props-no-spreading": "off",
"react/state-in-constructor": "off"
},
"settings": {
"import/resolver": {
"alias": {
"extensions": [".js"],
"map": [
["src", "./src"],
["app", "./src"]
]
}
}
}
}
7 changes: 7 additions & 0 deletions FRONT/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules/
dist/

.DS_Store
Thumbs.db

yarn-error.log
Loading

0 comments on commit 6971592

Please sign in to comment.