mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00

* Update dependencies and remove typescript version pinning (fixed upstream) * Fix esling warnings (disabled any and script lang checks) Rewrote clipboard copy (Fixes #3407) Run prettier --------- Co-authored-by: Oleg Lobanov <oleg@lobanov.me>
39 lines
996 B
JavaScript
39 lines
996 B
JavaScript
import pluginVue from "eslint-plugin-vue";
|
|
import vueTsEslintConfig from "@vue/eslint-config-typescript";
|
|
import prettierConfig from "@vue/eslint-config-prettier";
|
|
|
|
export default [
|
|
{
|
|
name: "app/files-to-lint",
|
|
files: ["**/*.{ts,mts,tsx,vue}"],
|
|
},
|
|
|
|
{
|
|
name: "app/files-to-ignore",
|
|
ignores: ["**/dist/**", "**/dist-ssr/**", "**/coverage/**"],
|
|
},
|
|
|
|
...pluginVue.configs["flat/essential"],
|
|
...vueTsEslintConfig(),
|
|
prettierConfig,
|
|
|
|
{
|
|
rules: {
|
|
// Note: you must disable the base rule as it can report incorrect errors
|
|
"no-unused-expressions": "off",
|
|
"@typescript-eslint/no-unused-expressions": "off",
|
|
// TODO: theres too many of these from before ts
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
// TODO: finish the ts conversion
|
|
"vue/block-lang": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/no-mutating-props": [
|
|
"error",
|
|
{
|
|
shallowOnly: true,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|