Skip to content

Commit

Permalink
Merge pull request #5 from VGVentures/docs/philosophy
Browse files Browse the repository at this point in the history
docs: our philosophy
  • Loading branch information
jolexxa authored Jul 8, 2024
2 parents bbd4cc0 + 02f7eeb commit a05d44f
Show file tree
Hide file tree
Showing 13 changed files with 966 additions and 8 deletions.
6 changes: 5 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"recommendations": ["astro-build.astro-vscode", "bradlc.vscode-tailwindcss"],
"recommendations": [
"astro-build.astro-vscode",
"bradlc.vscode-tailwindcss",
"unifiedjs.vscode-mdx"
],
"unwantedRecommendations": []
}
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"[markdown]": {
"editor.tabSize": 2,
"editor.wordWrap": "wordWrapColumn"
},
"[mdx]": {
"editor.formatOnSave": false,
"editor.tabSize": 2,
"editor.wordWrap": "wordWrapColumn"
},
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
Expand Down
6 changes: 6 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ export default defineConfig({
directory: "testing",
},
},
{
label: "Development",
autogenerate: {
directory: "development",
},
},
],
}),
react(),
Expand Down
10 changes: 9 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"ignorePaths": ["node_modules/**", ".**/"],
"files": ["**/*.md", "**/*.mdx", "**/*.tsx", "**/*.ts", "**/*.json"],
"words": ["astro", "astrojs", "tsconfigs"]
"words": [
"astro",
"astrojs",
"fontsource",
"incentivized",
"multiplatform",
"tailwindcss",
"tsconfigs"
]
}
12 changes: 12 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
import eslintConfigPrettier from "eslint-config-prettier";
import eslintPluginAstro from "eslint-plugin-astro";
import * as mdx from "eslint-plugin-mdx";
import tseslint from "typescript-eslint";

export default [
// add more generic rule sets here, such as:
// js.configs.recommended,
...eslintPluginAstro.configs.recommended,
...tseslint.configs.recommended,
...mdx.flat,
{
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
},
},
eslintConfigPrettier,
{
rules: {
Expand Down
Loading

0 comments on commit a05d44f

Please sign in to comment.