Skip to content

Commit

Permalink
Merge pull request #5 from FIT3170-FY-Project-7/main
Browse files Browse the repository at this point in the history
Pre-Redo Non-CRA Front-End Skeleton
  • Loading branch information
Brittank88 authored Apr 14, 2022
2 parents 3fc7340 + 4a72e48 commit b0948c7
Show file tree
Hide file tree
Showing 109 changed files with 37,545 additions and 305 deletions.
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"bracketSpacing": true,
"printWidth": 140,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 4,
"useTabs": false
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Robust Astrophysics Bayesian Inference Tool (RABIT)
# Robust Analytical Bayesian Inference Tool (RABIT)

An online data visualisation toolkit for Bayesian parameter estimation data.

Expand Down
8 changes: 8 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"presets" : [
[ "@babel/preset-env", { "targets": { "node": "current" } } ],
"@babel/preset-typescript",
[ "@babel/preset-react", {"runtime": "automatic"} ]
],
"plugins" : [ "@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime" ]
}
Binary file added berry-free-react-admin-template-3.0.0.zip
Binary file not shown.
Binary file not shown.
7 changes: 0 additions & 7 deletions domain_analysis/README.md

This file was deleted.

Binary file removed domain_analysis/class_diagram.png
Binary file not shown.
297 changes: 0 additions & 297 deletions domain_analysis/class_diagram.uxf

This file was deleted.

34 changes: 34 additions & 0 deletions eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
module.exports = {
env : { browser: true, es2021: true },
extends : ["airbnb", "prettier", "plugin:react/jsx-runtime", "plugin:jsx-a11y/recommended", "plugin:react-hooks/recommended", "react-app", "eslint:recommended", "plugin:@typescript-eslint/recommended"],
settings : { "import/resolver": { node: { moduleDirectory: ["node_modules", "src/"] } } },
parser : ["@typescript-eslint/parser", "@babel/eslint-parser"],
parserOptions : { ecmaFeatures: { experimentalObjectRestSpread: true, impliedStrict: true }, ecmaVersion: 12, sourceType: "module" },
plugins : ["prettier", "react", "react-hooks", "@typescript-eslint", "@babel"],
rules : {
"no-restricted-imports" : [ "error", { patterns: [ "@mui/*/*/*", "!@mui/material/test-utils/*" ] } ],

"react/jsx-filename-extension" : 0,
"no-param-reassign" : 0,
"react/prop-types" : 1,
"react/require-default-props" : 0,
"react/no-array-index-key" : 0,
"react/jsx-props-no-spreading" : 0,
"react/forbid-prop-types" : 0,
"import/order" : 0,
"no-console" : 0,
"jsx-a11y/anchor-is-valid" : 0,
"prefer-destructuring" : 0,
"no-shadow" : 0,
"no-unused-vars" : [ 1, { "ignoreRestSiblings": false } ],
"prettier/prettier" : [ 2, {
"bracketSpacing" : true,
"printWidth" : 180,
"singleQuote" : true,
"trailingComma" : "none",
"tabWidth" : 4,
"useTabs" : false,
"endOfLine" : "auto"
} ]
}
};
Loading

0 comments on commit b0948c7

Please sign in to comment.