-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy patheslint.config.js
More file actions
117 lines (111 loc) · 3.16 KB
/
Copy patheslint.config.js
File metadata and controls
117 lines (111 loc) · 3.16 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import pluginVue from 'eslint-plugin-vue';
const browserGlobals = {
// Core browser APIs
window: 'readonly',
document: 'readonly',
console: 'readonly',
navigator: 'readonly',
location: 'readonly',
history: 'readonly',
localStorage: 'readonly',
sessionStorage: 'readonly',
setTimeout: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
clearInterval: 'readonly',
requestAnimationFrame: 'readonly',
CustomEvent: 'readonly',
Event: 'readonly',
Element: 'readonly',
Node: 'readonly',
Image: 'readonly',
File: 'readonly',
FileReader: 'readonly',
FormData: 'readonly',
URL: 'readonly',
URLSearchParams: 'readonly',
XMLHttpRequest: 'readonly',
MutationObserver: 'readonly',
getComputedStyle: 'readonly',
alert: 'readonly',
confirm: 'readonly',
fetch: 'readonly',
// CDN libraries used in this project
jQuery: 'readonly',
$: 'readonly',
google: 'readonly', // Google Maps
L: 'readonly', // Leaflet
axios: 'readonly', // axios (also imported via npm in Vue files)
tinysort: 'readonly', // TinySort
gdprCookieNotice: 'readonly',
// Inline-script globals set by Blade templates
restarters: 'readonly',
Cookies: 'readonly',
// Vite/build
process: 'readonly',
};
export default [
// Vue SFCs
...pluginVue.configs['flat/vue2-essential'],
// Our own plain JS (misc/ and app.js) — skip vendor/minified files
{
files: [
'resources/js/app.js',
'resources/js/misc/**/*.js',
'resources/js/mixins/**/*.js',
'resources/js/store/**/*.js',
'resources/js/components/**/*.js',
],
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
globals: browserGlobals,
},
rules: {
'no-undef': 'error',
'no-var': 'warn',
},
},
// Vue SFCs — globals on top of vue plugin defaults
{
files: ['resources/js/**/*.vue'],
languageOptions: {
globals: browserGlobals,
},
rules: {
'no-undef': 'error',
},
},
// Jest test files
{
files: ['resources/js/**/*.test.js', 'resources/js/**/*.spec.js'],
languageOptions: {
globals: {
test: 'readonly',
it: 'readonly',
describe: 'readonly',
expect: 'readonly',
beforeEach: 'readonly',
afterEach: 'readonly',
beforeAll: 'readonly',
afterAll: 'readonly',
jest: 'readonly',
require: 'readonly',
module: 'readonly',
},
},
},
{
ignores: [
'public/**',
// Vendor / minified / generated files in resources/js root
'resources/js/bootstrap*.js',
'resources/js/jquery*.js',
'resources/js/vendor.js',
'resources/js/translations.js',
'resources/js/gdpr-cookie-notice/**',
'node_modules/**',
'vendor/**',
],
},
];