Skip to content

Commit 1f311e2

Browse files
authored
Add napari ❤️ Xarray blog post (#809)
* update gitignore * note and quote elements * banner update * better pre-commit regex + note component * add blog content * link to actual blog location * updates: links and photos * image path * paths and corss origin nonsense * linking dataarray repr * date
1 parent f1ccbbe commit 1f311e2

File tree

8 files changed

+773
-18
lines changed

8 files changed

+773
-18
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ package-lock.json
1919
# production
2020
/build
2121

22+
# generated RSS/Atom feeds
23+
public/atom.xml
24+
public/rss.json
25+
public/rss.xml
26+
2227
# misc
2328
.DS_Store
2429
*.pem

.pre-commit-config.yaml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,14 @@ repos:
1818
hooks:
1919
- id: prettier
2020
exclude: \.html$
21-
22-
files: "\\.(\
23-
css|less|scss\
24-
|graphql|gql\
25-
|html\
26-
|js|jsx\
27-
|json\
28-
|ts|tsx\
29-
|vue\
30-
|yaml|yml\
31-
)$"
21+
files: "\\.(css|less|scss|graphql|gql|html|js|jsx|json|ts|tsx|vue|yaml|yml)$"
3222
- repo: https://github.com/pre-commit/mirrors-prettier
3323
rev: 'v4.0.0-alpha.8'
3424
hooks:
3525
- id: prettier
3626

3727
name: prettier-markdown
3828
entry: prettier --write --parser mdx
39-
files: "\\.(\
40-
|md|markdown|mdown|mkdn\
41-
|mdx\
42-
)$"
29+
files: "\\.(md|markdown|mdown|mkdn|mdx)$"
4330
# exclude files ending with .html
4431
exclude: \.html$

0 commit comments

Comments
 (0)