forked from JHWelch/MMM-GrocyLists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
38 lines (34 loc) · 997 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = {
root: true,
extends: [
// Uncomment the next line if this project uses Vue.
// 'plugin:vue/essential',
// This should come last unless there's a specific reason to override our config with another.
'@highlandsolutions/highland',
],
env: {
browser: true,
},
// Add any global functions/values here.
globals: {
// E.g. route() is a helper that enables referencing Laravel-defined routes in javascript.
// https://journal.highlandsolutions.com/how-i-like-to-simplify-ziggys-route-helper-59127e19d4ba
// route: true,
},
settings: {
// If you have issues with the import plugin's reolution, try uncommenting and tweaking this.
// https://github.com/benmosher/eslint-plugin-import
// 'import/resolver': {
// node: {
// extensions: [
// '.js',
// '.vue',
// ],
// paths: [
// 'resources/js',
// 'vendor',
// ],
// },
// },
},
};