-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[1.1.3] Many small improvements & Changelog in Site Info! (#49)
* 1.1.2 hopefully dont need a followup commit, if i do oof * quick refactors * fix date on changelog * 1.1.3 many small changes :)
- Loading branch information
1 parent
6803d9b
commit 8733865
Showing
25 changed files
with
807 additions
and
412 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
/.github | ||
/src/assets/* | ||
/node_modules | ||
/testFiles | ||
|
||
# singular files | ||
.prettierignore | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* eslint-disable @typescript-eslint/no-unsafe-member-access */ | ||
/* eslint-disable @typescript-eslint/no-unsafe-call */ | ||
/* eslint-disable @typescript-eslint/no-unsafe-assignment */ | ||
import vue from 'eslint-plugin-vue' | ||
import typescriptEslint from '@typescript-eslint/eslint-plugin' | ||
import prettier from 'eslint-plugin-prettier' | ||
import globals from 'globals' | ||
import parser from 'vue-eslint-parser' | ||
import path from 'node:path' | ||
import { fileURLToPath } from 'node:url' | ||
import js from '@eslint/js' | ||
import { FlatCompat } from '@eslint/eslintrc' | ||
|
||
const __filename = fileURLToPath(import.meta.url) | ||
const __dirname = path.dirname(__filename) | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all | ||
}) | ||
|
||
export default [ | ||
{ | ||
ignores: [ | ||
'./src/assets/*', | ||
'./dist/*', | ||
'./.vscode/*', | ||
'./.husky/*', | ||
'./.github/*', | ||
'./node_modules/*' | ||
] | ||
}, | ||
...compat.extends( | ||
'prettier', | ||
'eslint:recommended', | ||
'plugin:vue/vue3-recommended', | ||
'@vue/typescript/recommended', | ||
'plugin:@typescript-eslint/recommended-type-checked', | ||
'plugin:@typescript-eslint/stylistic-type-checked', | ||
'plugin:depend/recommended', | ||
'@unocss' | ||
), | ||
{ | ||
plugins: { | ||
vue, | ||
'@typescript-eslint': typescriptEslint, | ||
prettier | ||
}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.browser | ||
}, | ||
|
||
parser: parser, | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
|
||
parserOptions: { | ||
parser: '@typescript-eslint/parser', | ||
project: true | ||
} | ||
}, | ||
|
||
rules: { | ||
'no-fallthrough': 'off', | ||
'prefer-const': 'error', | ||
'no-mixed-spaces-and-tabs': 'off', | ||
'prettier/prettier': 'error', | ||
'vue/max-attributes-per-line': 'off', | ||
'vue/html-indent': 'off', | ||
'vue/html-self-closing': 'off', | ||
'vue/singleline-html-element-content-newline': 'off', | ||
'vue/multi-word-component-names': 'off', | ||
'vue/html-closing-bracket-newline': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
'vue/no-setup-props-destructure': 'off' | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.