Skip to content

Commit

Permalink
Merge pull request #16 from whaaaley/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
whaaaley authored Dec 29, 2024
2 parents 80fc7e6 + f18e559 commit 3808678
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 165 deletions.
Empty file removed client/.gitignore
Empty file.
15 changes: 10 additions & 5 deletions client/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,15 @@ const standardConfig = [
]

const stylisticConfig = [
// Neostandard now imports the @stylistic/eslint-plugin, that's why we're able
// to use the config and rules here
stylistic.configs['recommended-flat'], // Do I still need this?
// The recommended-flat config includes things like trailing commas that are
// not included Neostandard's recommended config
stylistic.configs['recommended-flat'],
{
plugins: {
// Neostandard now imports the @stylistic/eslint-plugin; if we import it
// here, we'll get a duplicate plugin error
// '@stylistic': stylistic,
},
rules: {
'@stylistic/jsx-one-expression-per-line': 0,
'@stylistic/quote-props': ['error', 'as-needed'],
Expand Down Expand Up @@ -139,9 +144,9 @@ const stylisticConfig = [
},
]

// Must be last in the configuration order to properly override conflicting rules.
// Must be last in the configuration order to properly override conflicting rules
// TypeScript's type system handles many checks more accurately than ESLint,
// including import resolution, type checking, and variable usage.
// including import resolution, type checking, and variable usage
const typeScriptConfig = [
...tseslint.configs.strict,
{
Expand Down
159 changes: 0 additions & 159 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@types/node": "^22.7.9",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
Expand Down
Empty file removed server/.gitignore
Empty file.

0 comments on commit 3808678

Please sign in to comment.