Skip to content

Commit d834b14

Browse files
committed
Merge branch 'dev'
2 parents a6206e1 + 6103a8b commit d834b14

File tree

113 files changed

+8350
-7553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+8350
-7553
lines changed

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:react-hooks/recommended',
8+
],
9+
ignorePatterns: ['build', '*.js'],
10+
parser: '@typescript-eslint/parser',
11+
rules: {
12+
'@typescript-eslint/no-explicit-any': 'off',
13+
'@typescript-eslint/no-non-null-assertion': 'off',
14+
},
15+
};

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Paper Change Log
22

3+
### 3.1.0
4+
5+
_2024-06-15_
6+
7+
- Modernized the codebase to improve maintainability.
8+
- Removed unnecessary dependencies.
9+
310
### 3.0.2
411

512
_2024-06-03_

craco.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const path = require('path');
2+
3+
module.exports = {
4+
webpack: {
5+
alias: {
6+
'@': path.resolve(__dirname, 'src'),
7+
},
8+
},
9+
};

0 commit comments

Comments
 (0)