Skip to content

Commit 05c86ff

Browse files
committedApr 6, 2023
Initial push
0 parents  commit 05c86ff

File tree

162 files changed

+9112
-0
lines changed

Some content is hidden

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

162 files changed

+9112
-0
lines changed
 

‎.dockerignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
dist
3+
build
4+
5+
**/node_modules
6+
**/build
7+
**/dist

‎.eslintrc.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module.exports = {
2+
extends: [
3+
'eslint:recommended',
4+
'plugin:markdown/recommended',
5+
'plugin:react/recommended',
6+
'plugin:react/jsx-runtime',
7+
'plugin:react-hooks/recommended',
8+
'plugin:jsx-a11y/recommended',
9+
'plugin:prettier/recommended'
10+
],
11+
settings: {
12+
react: {
13+
version: 'detect'
14+
}
15+
},
16+
parser: '@typescript-eslint/parser',
17+
ignorePatterns: ['**/node_modules', '**/dist', '**/build', '**/package-lock.json'],
18+
plugins: ['unused-imports'],
19+
rules: {
20+
'@typescript-eslint/explicit-module-boundary-types': 'off',
21+
'no-unused-vars': 'off',
22+
'unused-imports/no-unused-imports': 'warn',
23+
'unused-imports/no-unused-vars': ['warn', { vars: 'all', varsIgnorePattern: '^_', args: 'after-used', argsIgnorePattern: '^_' }],
24+
'no-undef': 'off',
25+
'no-console': [process.env.CI ? 'error' : 'warn', { allow: ['warn', 'error', 'info'] }],
26+
'prettier/prettier': 'error'
27+
}
28+
}

0 commit comments

Comments
 (0)
Please sign in to comment.