Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
dilanx committed Jun 16, 2024
2 parents a6206e1 + 6103a8b commit d834b14
Show file tree
Hide file tree
Showing 113 changed files with 8,350 additions and 7,553 deletions.
15 changes: 15 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['build', '*.js'],
parser: '@typescript-eslint/parser',
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
},
};
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Paper Change Log

### 3.1.0

_2024-06-15_

- Modernized the codebase to improve maintainability.
- Removed unnecessary dependencies.

### 3.0.2

_2024-06-03_
Expand Down
9 changes: 9 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const path = require('path');

module.exports = {
webpack: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
};
Loading

0 comments on commit d834b14

Please sign in to comment.