diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index abeac254..104c0db0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ ci: autoupdate_schedule: "monthly" repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.15" + rev: "v0.16.1" hooks: - id: ruff args: ["--fix", "--unsafe-fixes"] @@ -20,7 +20,7 @@ repos: "--remove-unused-variable", ] - repo: https://github.com/rbubley/mirrors-prettier - rev: v3.8.3 + rev: v3.9.6 hooks: - id: prettier types_or: [css, scss, javascript, rst, json, yaml, toml, markdown] @@ -38,7 +38,7 @@ repos: args: ["--fix=lf"] - id: trailing-whitespace - repo: https://github.com/codespell-project/codespell - rev: v2.4.2 + rev: v2.4.3 hooks: - id: codespell args: ["--write-changes"] diff --git a/posts/2023/2023-05-10-timeseries_sdg.md b/posts/2023/2023-05-10-timeseries_sdg.md index 0e73560f..f7c4aa49 100644 --- a/posts/2023/2023-05-10-timeseries_sdg.md +++ b/posts/2023/2023-05-10-timeseries_sdg.md @@ -72,17 +72,18 @@ sunpy currently has built in support for reading CDF files that conform to the [ Alongside this several custom data readers have been written to support different data sources: (links point to the data source information web page) -| Data product(s) | File format | -| -- | -- | -| [SDO EVE/ESP L1](https://lasp.colorado.edu/eve/data_access/eve_data/products/level1/esp/2020/) | FITS | | -| [SDO EVE/ESP L0CS](https://lasp.colorado.edu/home/eve/data/) | Text file | -| [FERMI GBM summary](https://fermi.gsfc.nasa.gov/ssc/data/access/) | FITS | -| GOES XRS | FITS, netCDF | -| PROBA-2 LYRA ligthcurve | FITS | -| [NOAA solar cycle monthly indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON | -| [NOAA solar cycle predicted indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON | -| [NoRH radio](https://solar.nro.nao.ac.jp/norh/archive.html) | FITS | -| RHESSI x-ray summary | FITS | + +| Data product(s) | File format | +| ------------------------------------------------------------------------------------------------ | ------------ | +| [SDO EVE/ESP L1](https://lasp.colorado.edu/eve/data_access/eve_data/products/level1/esp/2020/) | FITS | +| [SDO EVE/ESP L0CS](https://lasp.colorado.edu/home/eve/data/) | Text file | +| [FERMI GBM summary](https://fermi.gsfc.nasa.gov/ssc/data/access/) | FITS | +| GOES XRS | FITS, netCDF | +| PROBA-2 LYRA ligthcurve | FITS | +| [NOAA solar cycle monthly indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON | +| [NOAA solar cycle predicted indices](https://www.swpc.noaa.gov/products/solar-cycle-progression) | JSON | +| [NoRH radio](https://solar.nro.nao.ac.jp/norh/archive.html) | FITS | +| RHESSI x-ray summary | FITS | ## Evaluating options diff --git a/ruff.toml b/ruff.toml index dfeb00bb..e36c591a 100644 --- a/ruff.toml +++ b/ruff.toml @@ -20,6 +20,7 @@ lint.extend-ignore = [ "ISC001", # May cause conflicts when used with the formatter "PD011", # Use `.to_numpy()` instead of `.values` "T201", # Print statements + "CPY001", # Copyright statements in each file ] [lint.per-file-ignores]