-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from NFDI4Chem/development
Development
- Loading branch information
Showing
17 changed files
with
7,045 additions
and
3,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,93 @@ | ||
{ | ||
"env":{ | ||
"browser":true, | ||
"es2021":true | ||
}, | ||
"extends":[ | ||
"plugin:react/recommended", | ||
"airbnb", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier", | ||
"plugin:prettier/recommended" | ||
|
||
], | ||
"parser":"@typescript-eslint/parser", | ||
"parserOptions":{ | ||
"ecmaFeatures":{ | ||
"jsx":true | ||
}, | ||
"ecmaVersion":12, | ||
"sourceType":"module" | ||
}, | ||
"plugins":[ | ||
"react", | ||
"@typescript-eslint", | ||
"react-hooks" | ||
], | ||
"rules":{ | ||
"react/require-default-props":"off", | ||
"react/react-in-jsx-scope":"off", | ||
"no-use-before-define": ["error"], | ||
"@typescript-eslint/no-use-before-define":[ | ||
"error" | ||
], | ||
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}], | ||
|
||
"react/jsx-filename-extension":[ | ||
"warn", | ||
{ | ||
"extensions":[ | ||
".tsx" | ||
] | ||
} | ||
], | ||
"import/extensions":[ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"ts":"never", | ||
"tsx":"never" | ||
} | ||
], | ||
|
||
"@typescript-eslint/explicit-function-return-type":"off", | ||
"react-hooks/rules-of-hooks":"error", | ||
"react-hooks/exhaustive-deps":"warn", | ||
"import/prefer-default-export":"off", | ||
"react/prop-types":"off", | ||
"react/no-unknown-property": ["error", { "ignore": ["css"] }] | ||
|
||
|
||
|
||
|
||
}, | ||
"settings":{ | ||
"import/resolver":{ | ||
"typescript":{ | ||
|
||
} | ||
} | ||
}, | ||
"overrides": [ | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"extends": [ | ||
"plugin:react/recommended", | ||
"airbnb", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier", | ||
"plugin:prettier/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 12, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"@typescript-eslint", | ||
"react-hooks" | ||
], | ||
"rules": { | ||
"import/no-unresolved": "off", | ||
"react/require-default-props": "off", | ||
"react/react-in-jsx-scope": "off", | ||
"no-use-before-define": [ | ||
"error" | ||
], | ||
"@typescript-eslint/no-use-before-define": [ | ||
"error" | ||
], | ||
"import/no-extraneous-dependencies": [ | ||
"error", | ||
{ | ||
"devDependencies": true | ||
} | ||
], | ||
"react/jsx-filename-extension": [ | ||
"warn", | ||
{ | ||
"extensions": [ | ||
".tsx" | ||
] | ||
} | ||
], | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"": "never", | ||
"js": "never", | ||
"jsx": "never", | ||
"ts": "never", | ||
"tsx": "never" | ||
} | ||
], | ||
"@typescript-eslint/explicit-function-return-type": "off", | ||
"react-hooks/rules-of-hooks": "error", | ||
"react-hooks/exhaustive-deps": "warn", | ||
"import/prefer-default-export": "off", | ||
"react/prop-types": "off", | ||
"react/no-unknown-property": [ | ||
"error", | ||
{ | ||
"ignore": [ | ||
"css" | ||
] | ||
} | ||
] | ||
}, | ||
"settings": { | ||
"import/resolve": { | ||
"typescript": {}, | ||
"paths": [ | ||
"src/" | ||
] | ||
} | ||
}, | ||
"overrides": [ | ||
{ | ||
"files":["src/*.json"], | ||
"rules":{ | ||
"files": [ | ||
"src/*.json" | ||
], | ||
"rules": { | ||
"no-unused-expressions": "off" | ||
} | ||
|
||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<!-- <link rel="shortcut icon" href="/favicon.ico" /> --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<title>NMRium Wrapper</title> | ||
|
||
<style> | ||
html, | ||
body, | ||
#root { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<!-- <link rel="shortcut icon" href="/favicon.ico" /> --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#ea580c" /> | ||
<title>NMRium Wrapper</title> | ||
<meta name="description" | ||
content="Wrapper for NMRium which is a powerful tool for displaying and processing nuclear magnetic resonance (NMR) spectra"> | ||
|
||
<style> | ||
html, | ||
body, | ||
#root { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.