Skip to content

Commit

Permalink
Bootstrap app with Create React App
Browse files Browse the repository at this point in the history
  • Loading branch information
axelboc-esrf committed Feb 21, 2020
1 parent 426b876 commit 087caf1
Show file tree
Hide file tree
Showing 19 changed files with 14,741 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/build
/node_modules
npm-debug.log*
Empty file added .prettierignore
Empty file.
14 changes: 14 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 120,
"proseWrap": "always"
}
}
]
}
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["editorconfig.editorconfig", "esbenp.prettier-vscode"]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"javascript.format.enable": false,
"json.format.enable": false,

"editor.formatOnSave": true
}
4 changes: 2 additions & 2 deletions LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License
# MIT License

Copyright (c) 2020 Organization managing the silx project
**Copyright (c) 2020 European Synchrotron Radiation Facility**

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# h5web
HDF5 web viewer
# HDF5 Web Viewer


Loading

0 comments on commit 087caf1

Please sign in to comment.