mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2025-12-20 04:00:02 +01:00
20 lines
410 B
JavaScript
20 lines
410 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
extends: ['eslint:recommended', 'plugin:svelte/recommended', 'prettier'],
|
||
|
|
parserOptions: {
|
||
|
|
sourceType: 'module',
|
||
|
|
ecmaVersion: 'latest',
|
||
|
|
extraFileExtensions: ['.svelte']
|
||
|
|
},
|
||
|
|
env: {
|
||
|
|
browser: true,
|
||
|
|
es2017: true,
|
||
|
|
node: true
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
'no-unused-vars': ['off', { varsIgnorePattern: '.*' }],
|
||
|
|
'svelte/no-at-html-tags': 'off'
|
||
|
|
},
|
||
|
|
globals: { globalThis: true }
|
||
|
|
}
|