forked from mrlvsb/kelvin
-
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.
- Loading branch information
1 parent
2feb223
commit 9ba73bd
Showing
5 changed files
with
1,486 additions
and
7 deletions.
There are no files selected for viewing
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,4 @@ | ||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
package-lock.json | ||
yarn.lock |
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,10 @@ | ||
{ | ||
"useTabs": false, | ||
"tabWidth": 4, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 180, | ||
"semi": true, | ||
"plugins": ["prettier-plugin-vue"], | ||
"overrides": [{ "files": "*.vue", "options": { "parser": "vue", "vueExcludeBlocks": [] } }] | ||
} |
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,26 @@ | ||
import js from '@eslint/js'; | ||
import prettier from 'eslint-config-prettier'; | ||
import pluginVue from 'eslint-plugin-vue'; | ||
import ts from 'typescript-eslint'; | ||
|
||
/** @type {import("eslint").Linter.Config} */ | ||
export default [ | ||
js.configs.recommended, | ||
...ts.configs.recommended, | ||
...pluginVue.configs['flat/recommended'], | ||
prettier, | ||
{ | ||
ignores: ['node_modules', 'rollup.config.js', 'package-lock.json', 'pnpm-lock.yaml', 'rollup.config.js'] | ||
}, | ||
{ | ||
files: ['*.vue', '**/*.vue'], | ||
languageOptions: { | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser' | ||
} | ||
}, | ||
rules: { | ||
'vue/multi-word-component-names': 'off' | ||
} | ||
} | ||
]; |
Oops, something went wrong.