Skip to content

Commit

Permalink
Merge pull request #5 from bbonkr/dev
Browse files Browse the repository at this point in the history
Update project structure
  • Loading branch information
bbonkr authored Sep 10, 2021
2 parents 56f6232 + 408b9ba commit b63cfbb
Show file tree
Hide file tree
Showing 20 changed files with 859 additions and 875 deletions.
27 changes: 8 additions & 19 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,18 @@
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],

"plugins": [
"prettier"
],
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"settings": {
"react":{
"version":"detect"
"react": {
"version": "detect"
}
},
"rules": {
"prettier/prettier": [
"error"
]
"prettier/prettier": ["error"]
},
"overrides": [
{
"files":["*.ts", "*.tsx"],
"files": ["*.ts", "*.tsx"],
"env": {
"browser": true
},
Expand All @@ -40,12 +31,10 @@
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"react",
"@typescript-eslint"
],
"plugins": ["react", "@typescript-eslint"],
"rules": {
"react/prop-types": "off"
"react/prop-types": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion build/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
output: {
filename: '[name].js',
path: path.join(path.resolve(__dirname, '..'), 'out', 'dist'),
publicPath: 'dist/',
publicPath: './dist/',
clean: true,
},
};
Loading

0 comments on commit b63cfbb

Please sign in to comment.