@alicevia/eslint-config-vue 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +16 -0
  2. package/package.json +25 -0
package/index.js ADDED
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ overrides: [
3
+ {
4
+ files: ['*.vue'],
5
+ parser: 'vue-eslint-parser',
6
+ parserOptions: {
7
+ parser: '@typescript-eslint/parser',
8
+ },
9
+
10
+ }
11
+ ],
12
+ extends: ['@alicevia/eslint-config-ts', 'plugin:vue/vue3-recommended'],
13
+ rules: {
14
+ 'vue/multi-word-component-names': 0,
15
+ },
16
+ }
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@alicevia/eslint-config-vue",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js"
8
+ ],
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC",
12
+ "dependencies": {
13
+ "@alicevia/eslint-config-ts": "1.0.0",
14
+ "eslint-plugin-vue": "^8.7.1"
15
+ },
16
+ "devDependencies": {
17
+ "eslint": "^8.15.0"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "scripts": {
23
+ "test": "echo \"Error: no test specified\" && exit 1"
24
+ }
25
+ }