Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/various fixes #321

Merged
merged 23 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
97b34f2
fix: remove unused code and add better error handling
HectorxH Aug 30, 2024
585d07c
fix: better error handling for magstats
HectorxH Aug 30, 2024
5a7321b
fix: add command to run object api on dev
HectorxH Aug 30, 2024
59a095d
style: lint with black
HectorxH Aug 30, 2024
34b19a9
style: lint with ruff
HectorxH Aug 30, 2024
720d4af
feat: add eslint and prettier for js files
HectorxH Sep 3, 2024
9b10c94
feat: move object js code to its own file
HectorxH Sep 3, 2024
044e6eb
style: run prettier
HectorxH Sep 3, 2024
845b0b3
fix: update ligtcurve config import
HectorxH Sep 3, 2024
de62108
feat: update run_dev script to run all apis
HectorxH Sep 3, 2024
c4d1f00
lint: run eslint
HectorxH Sep 3, 2024
19e097e
style: run isort
HectorxH Sep 3, 2024
063670f
fix: dev run script
HectorxH Sep 3, 2024
c6c222d
fix: add env var to run dev script
HectorxH Sep 3, 2024
162341c
fix(object): reduce number of digits in ra dec
HectorxH Sep 3, 2024
cd63798
Merge remote-tracking branch 'origin/main' into feat/various-fixes
HectorxH Sep 5, 2024
d262757
style: run ruff
HectorxH Sep 5, 2024
cb7412b
lint: lint and reformat .jinja files using djlint
HectorxH Sep 5, 2024
a14961b
fix: move magstats script to its own file
HectorxH Sep 5, 2024
d268008
Merge remote-tracking branch 'origin/main' into feat/various-fixes
HectorxH Sep 5, 2024
0678e5e
Merge remote-tracking branch 'origin/main' into feat/various-fixes
HectorxH Sep 5, 2024
8b1993e
fix: add API_URL to scripts
HectorxH Sep 6, 2024
2af6915
fix api_url and raDec text
Demurest Sep 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lightcurve/.djlintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extension": "jinja",
"ignore": "H021"
}
6 changes: 6 additions & 0 deletions lightcurve/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
**.md
**.MD
**/echarts.js
**/echarts.min.js
**/astro-dates.js
**/jszip.js
Empty file added lightcurve/.prettierrc
Empty file.
19 changes: 19 additions & 0 deletions lightcurve/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import globals from "globals";
import pluginJs from "@eslint/js";

export default [
{
ignores: [
".venv",
"tailwind.config.js",
"**/echarts.js",
"**/echarts.min.js",
"**/astro-dates.js",
"**/jszip.js",
],
},
{
languageOptions: { globals: globals.browser },
},
pluginJs.configs.recommended,
];
Loading
Loading