avances en plantillas
This commit is contained in:
parent
0f84beacf1
commit
da0530d79b
2062 changed files with 598814 additions and 22 deletions
39
storage/public/dist/libs/plyr/eslint.config.mjs
vendored
Normal file
39
storage/public/dist/libs/plyr/eslint.config.mjs
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
import antfu from '@antfu/eslint-config';
|
||||
import { FlatCompat } from '@eslint/eslintrc';
|
||||
|
||||
import globals from 'globals';
|
||||
|
||||
const compat = new FlatCompat({ baseDirectory: import.meta.dirname });
|
||||
|
||||
export default antfu({
|
||||
formatters: {
|
||||
css: true,
|
||||
html: true,
|
||||
markdown: 'prettier',
|
||||
svg: 'prettier',
|
||||
},
|
||||
stylistic: {
|
||||
semi: true,
|
||||
spacedComment: true,
|
||||
indent: 2,
|
||||
quotes: 'single',
|
||||
},
|
||||
ignores: ['node_modules', 'dist', 'src/js/plyr.d.ts'],
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
Hls: 'readonly',
|
||||
jQuery: 'readonly',
|
||||
Plyr: 'readonly',
|
||||
},
|
||||
},
|
||||
}, ...compat.config({
|
||||
rules: {
|
||||
'antfu/if-newline': 'off',
|
||||
},
|
||||
}, {
|
||||
files: ['**/*.md'],
|
||||
rules: {
|
||||
'style/max-len': 'off',
|
||||
},
|
||||
}));
|
||||
Loading…
Add table
Add a link
Reference in a new issue