File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 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 : [ 'dist' , '.eslintrc.cjs' ] ,
10+ parser : '@typescript-eslint/parser' ,
11+ plugins : [ 'react-refresh' ] ,
12+ rules : {
13+ 'react-refresh/only-export-components' : [
14+ 'warn' ,
15+ { allowConstantExport : true } ,
16+ ] ,
17+ } ,
18+ }
Original file line number Diff line number Diff line change 1+ # Logs
2+ logs
3+ * .log
4+ npm-debug.log *
5+ yarn-debug.log *
6+ yarn-error.log *
7+ pnpm-debug.log *
8+ lerna-debug.log *
9+
10+ node_modules
11+ dist
12+ dist-ssr
13+ * .local
14+
15+ # Editor directories and files
16+ .vscode /*
17+ ! .vscode /extensions.json
18+ .idea
19+ .DS_Store
20+ * .suo
21+ * .ntvs *
22+ * .njsproj
23+ * .sln
24+ * .sw ?
You can’t perform that action at this time.
0 commit comments