Skip to content

Commit

Permalink
Fix ESlint
Browse files Browse the repository at this point in the history
  • Loading branch information
McPizza0 committed Jun 14, 2023
1 parent 55a2cd3 commit b0b12f8
Show file tree
Hide file tree
Showing 6 changed files with 445 additions and 1,287 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
trim_trailing_whitespace = false
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
root: true,
plugins: ['@typescript-eslint', 'prettier'],
extends: ['prettier', '@nuxt/eslint-config', '@nuxtjs/eslint-config-typescript', '@unocss'],
extends: ['@nuxt/eslint-config', 'prettier'],
rules: {
semi: [2, 'always'],
'space-before-function-paren': ['error', 'never']
Expand Down
6 changes: 1 addition & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@
"i18n-ally.localesPaths": ["packages/locales"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"spellright.language": ["en"],
"spellright.documentTypes": ["markdown", "typescript", "vue"],
"spellright.notificationClass": "warning",
"cSpell.words": ["umami"]
}
}
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,20 @@
"version": "0.0.1",
"description": "email + chat communications platform",
"scripts": {
"clean": "find . -name node_modules -o -name .nuxt -o -name .output -o -name .turbo -o -name dist -type d -prune | xargs rm -rf",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Omar McPizza - @McPizza0",
"license": "AGPLv3",
"devDependencies": {
"@nuxt/eslint-config": "^0.1.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^20.3.0",
"@unocss/eslint-config": "^0.53.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1"
"typescript": "^5.1.3"
},
"packageManager": "pnpm@8.5.1"
}
}
Loading

0 comments on commit b0b12f8

Please sign in to comment.