File tree 5 files changed +37
-40
lines changed 5 files changed +37
-40
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "jsxSingleQuote" : true ,
3
- "singleQuote" : true ,
4
- "semi" : false ,
5
- "tabWidth" : 2 ,
6
- "trailingComma" : " all" ,
7
- "printWidth" : 100 ,
8
- "bracketSpacing" : true
2
+ "jsxSingleQuote" : true ,
3
+ "singleQuote" : true ,
4
+ "semi" : false ,
5
+ "tabWidth" : 2 ,
6
+ "trailingComma" : " all" ,
7
+ "printWidth" : 100 ,
8
+ "bracketSpacing" : true
9
9
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This directory contains the frontend application. It is built with [React](https
4
4
5
5
## Requirements
6
6
7
- * [ Node.js] ( https://nodejs.org/en/ ) for javascript execution and ` npm ` for package management.
7
+ - [ Node.js] ( https://nodejs.org/en/ ) for javascript execution and ` npm ` for package management.
8
8
9
9
## Install
10
10
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import globals from 'globals'
3
3
import reactHooks from 'eslint-plugin-react-hooks'
4
4
import reactRefresh from 'eslint-plugin-react-refresh'
5
5
import tseslint from 'typescript-eslint'
6
- import eslintConfigPrettier from " eslint-config-prettier" ;
6
+ import eslintConfigPrettier from ' eslint-config-prettier'
7
7
8
8
export default tseslint . config (
9
9
{ ignores : [ 'dist' ] } ,
@@ -20,10 +20,7 @@ export default tseslint.config(
20
20
} ,
21
21
rules : {
22
22
...reactHooks . configs . recommended . rules ,
23
- 'react-refresh/only-export-components' : [
24
- 'warn' ,
25
- { allowConstantExport : true } ,
26
- ] ,
23
+ 'react-refresh/only-export-components' : [ 'warn' , { allowConstantExport : true } ] ,
27
24
} ,
28
25
} ,
29
26
eslintConfigPrettier ,
Original file line number Diff line number Diff line change 1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="UTF-8 " />
Original file line number Diff line number Diff line change 1
1
{
2
- "compilerOptions" : {
3
- "target" : " ES2020" ,
4
- "useDefineForClassFields" : true ,
5
- "lib" : [
6
- " ES2020" ,
7
- " DOM" ,
8
- " DOM.Iterable"
9
- ],
10
- "module" : " ESNext" ,
11
- "skipLibCheck" : true ,
12
- /* Bundler mode */
13
- "moduleResolution" : " bundler" ,
14
- "allowImportingTsExtensions" : true ,
15
- "isolatedModules" : true ,
16
- "moduleDetection" : " force" ,
17
- "noEmit" : true ,
18
- "jsx" : " react-jsx" ,
19
- /* Linting */
20
- "strict" : true ,
21
- "noUnusedLocals" : true ,
22
- "noUnusedParameters" : true ,
23
- "noFallthroughCasesInSwitch" : true
24
- },
25
- "include" : [
26
- " src"
27
- ]
2
+ "compilerOptions" : {
3
+ "target" : " ES2020" ,
4
+ "useDefineForClassFields" : true ,
5
+ "lib" : [
6
+ " ES2020" ,
7
+ " DOM" ,
8
+ " DOM.Iterable"
9
+ ],
10
+ "module" : " ESNext" ,
11
+ "skipLibCheck" : true ,
12
+ /* Bundler mode */
13
+ "moduleResolution" : " bundler" ,
14
+ "allowImportingTsExtensions" : true ,
15
+ "isolatedModules" : true ,
16
+ "moduleDetection" : " force" ,
17
+ "noEmit" : true ,
18
+ "jsx" : " react-jsx" ,
19
+ /* Linting */
20
+ "strict" : true ,
21
+ "noUnusedLocals" : true ,
22
+ "noUnusedParameters" : true ,
23
+ "noFallthroughCasesInSwitch" : true
24
+ },
25
+ "include" : [
26
+ " src"
27
+ ]
28
28
}
You can’t perform that action at this time.
0 commit comments