-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aurélien Bompard <[email protected]>
- Loading branch information
Showing
5 changed files
with
381 additions
and
334 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// vim: et ts=4 sw=4: | ||
// SPDX-FileCopyrightText: Contributors to the Fedora Project | ||
// | ||
// SPDX-License-Identifier: MIT | ||
|
||
import js from "@eslint/js"; | ||
import pluginVue from 'eslint-plugin-vue' | ||
import vueTsEslintConfig from "@vue/eslint-config-typescript"; | ||
import prettierConfig from "@vue/eslint-config-prettier"; | ||
//import skipFormattingConfig from "@vue/eslint-config-prettier/skip-formatting"; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
...pluginVue.configs['flat/essential'], | ||
//...pluginVue.configs['flat/strongly-recommended'], | ||
//...pluginVue.configs['flat/recommended'], | ||
...vueTsEslintConfig(), | ||
{ | ||
plugins: { | ||
prettier: prettierConfig, | ||
//prettier: skipFormattingConfig, | ||
}, | ||
}, | ||
{ | ||
ignores: ["src/api/generated.ts", "dist/*"], | ||
}, | ||
]; |
Oops, something went wrong.