Skip to content

Commit 3b20ee4

Browse files
author
Walker Leite
committed
feat(eslint): add eslint to this repo itself
1 parent ffd1574 commit 3b20ee4

File tree

7 files changed

+1211
-28
lines changed

7 files changed

+1211
-28
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test-project
2+
node_modules

.eslintrc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"root": true,
3+
"parserOptions": {
4+
"parser": "babel-eslint"
5+
},
6+
"env": {
7+
"browser": true
8+
},
9+
"extends": [
10+
"plugin:vue/recommended",
11+
"airbnb-base",
12+
"loopback"
13+
],
14+
"plugins": [
15+
"vue"
16+
],
17+
"globals": {
18+
"expect": true,
19+
"assert": true,
20+
"require": true,
21+
"request": true
22+
}
23+
}

0 commit comments

Comments
 (0)