Skip to content

Commit

Permalink
frontti
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLares committed Sep 10, 2019
1 parent cc71538 commit e825cab
Show file tree
Hide file tree
Showing 16 changed files with 13,241 additions and 1 deletion.
1 change: 0 additions & 1 deletion osa5/bloglist-frontend
Submodule bloglist-frontend deleted from 8d2c2a
Empty file added osa5/bloglist/.eslintignore
Empty file.
49 changes: 49 additions & 0 deletions osa5/bloglist/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
module.exports={
"env": {
"browser": true,
"es6": true,
"jest/globals": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react", "jest"
],
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"eqeqeq": "error",
"no-trailing-spaces": "error",
"object-curly-spacing": [
"error", "always"
],
"arrow-spacing": [
"error", { "before": true, "after": true }
],
"no-console": 0,
"react/prop-types": 0
}
};
23 changes: 23 additions & 0 deletions osa5/bloglist/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading

0 comments on commit e825cab

Please sign in to comment.