Skip to content

Commit

Permalink
Migrate to React (#70) (#71)
Browse files Browse the repository at this point in the history
- remove old dependencies
- configure eslint, prettier, stylelint
- format files
- replace preact with react
- fix editor and template-lib
- fix issue with periodic table
- update .eslintignore
- update .stylelintignore
- add docs folder
  • Loading branch information
AndreiMazol authored Oct 26, 2020
1 parent ff09fbd commit 40adc92
Show file tree
Hide file tree
Showing 139 changed files with 32,176 additions and 25,638 deletions.
13 changes: 0 additions & 13 deletions .babelrc

This file was deleted.

28 changes: 0 additions & 28 deletions .editorconfig

This file was deleted.

Empty file added .env
Empty file.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
/node_modules
77 changes: 0 additions & 77 deletions .eslintrc

This file was deleted.

9 changes: 1 addition & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
* text=auto

* .js text eol=lf

*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
* text=auto eol=lf
34 changes: 24 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/*.zip
/dist
/.pnp
.pnp.js

# testing
/coverage
test/dist
/indigo

.idea/
*.pyc
/extra
.tern-port
debug.log

# production
/build

# old version
/_archive

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

npm-debug.log*
yarn-debug.log*
yarn-error.log*
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/public
3 changes: 3 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
...require('prettier-config-standard')
}
2 changes: 2 additions & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src/style/**
/build
7 changes: 7 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-prettier/recommended"
]
}
Loading

0 comments on commit 40adc92

Please sign in to comment.