Inserito il tema direttamente nel codice invece che come sottomodulo
This commit is contained in:
29
themes/hugo-universal-theme/eslint.config.mjs
Normal file
29
themes/hugo-universal-theme/eslint.config.mjs
Normal file
@ -0,0 +1,29 @@
|
||||
import standard from 'eslint-plugin-standard'
|
||||
import promise from 'eslint-plugin-promise'
|
||||
import globals from 'globals'
|
||||
import path from 'node:path'
|
||||
import { fileURLToPath } from 'node:url'
|
||||
import js from '@eslint/js'
|
||||
import { FlatCompat } from '@eslint/eslintrc'
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url)
|
||||
const __dirname = path.dirname(__filename)
|
||||
const compat = new FlatCompat({
|
||||
baseDirectory: __dirname,
|
||||
recommendedConfig: js.configs.recommended,
|
||||
allConfig: js.configs.all
|
||||
})
|
||||
|
||||
export default [{
|
||||
ignores: ['**/js/gmaps.init.js', '**/*.min.js', '**/owl.*.js', '**/jquery.*.js', '**/hpneo.*.js']
|
||||
}, ...compat.extends('standard'), {
|
||||
plugins: {
|
||||
standard,
|
||||
promise
|
||||
},
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.jquery
|
||||
}
|
||||
}
|
||||
}]
|
||||
Reference in New Issue
Block a user