feat: docker compose maybe

This commit is contained in:
2023-11-13 16:10:04 -05:00
parent 180b261e40
commit b625ccd8d6
8031 changed files with 2182966 additions and 0 deletions

View File

@ -0,0 +1,5 @@
declare const _default: {
extends: string[];
rules: any;
};
export = _default;

16
node_modules/eslint-plugin-svelte/lib/configs/all.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const path_1 = __importDefault(require("path"));
const rules_1 = require("../utils/rules");
const base = require.resolve('./base');
const baseExtend = path_1.default.extname(`${base}`) === '.ts' ? 'plugin:svelte/base' : base;
module.exports = {
extends: [baseExtend],
rules: Object.fromEntries(rules_1.rules
.map((rule) => [`svelte/${rule.meta.docs.ruleName}`, 'error'])
.filter(([ruleName]) => ![
'svelte/no-restricted-html-elements'
].includes(ruleName)))
};

View File

@ -0,0 +1,14 @@
declare const _default: {
plugins: string[];
overrides: {
files: string[];
parser: string;
rules: {
'no-inner-declarations': string;
'no-self-assign': string;
'svelte/comment-directive': string;
'svelte/system': string;
};
}[];
};
export = _default;

16
node_modules/eslint-plugin-svelte/lib/configs/base.js generated vendored Normal file
View File

@ -0,0 +1,16 @@
"use strict";
module.exports = {
plugins: ['svelte'],
overrides: [
{
files: ['*.svelte'],
parser: require.resolve('svelte-eslint-parser'),
rules: {
'no-inner-declarations': 'off',
'no-self-assign': 'off',
'svelte/comment-directive': 'error',
'svelte/system': 'error'
}
}
]
};

View File

@ -0,0 +1,17 @@
declare const _default: {
extends: string[];
rules: {
'svelte/first-attribute-linebreak': string;
'svelte/html-closing-bracket-spacing': string;
'svelte/html-quotes': string;
'svelte/html-self-closing': string;
'svelte/indent': string;
'svelte/max-attributes-per-line': string;
'svelte/mustache-spacing': string;
'svelte/no-spaces-around-equal-signs-in-attribute': string;
'svelte/no-trailing-spaces': string;
'svelte/shorthand-attribute': string;
'svelte/shorthand-directive': string;
};
};
export = _default;

View File

@ -0,0 +1,23 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const path_1 = __importDefault(require("path"));
const base = require.resolve('./base');
const baseExtend = path_1.default.extname(`${base}`) === '.ts' ? 'plugin:svelte/base' : base;
module.exports = {
extends: [baseExtend],
rules: {
'svelte/first-attribute-linebreak': 'off',
'svelte/html-closing-bracket-spacing': 'off',
'svelte/html-quotes': 'off',
'svelte/html-self-closing': 'off',
'svelte/indent': 'off',
'svelte/max-attributes-per-line': 'off',
'svelte/mustache-spacing': 'off',
'svelte/no-spaces-around-equal-signs-in-attribute': 'off',
'svelte/no-trailing-spaces': 'off',
'svelte/shorthand-attribute': 'off',
'svelte/shorthand-directive': 'off'
}
};

View File

@ -0,0 +1,20 @@
declare const _default: {
extends: string[];
rules: {
'svelte/comment-directive': string;
'svelte/no-at-debug-tags': string;
'svelte/no-at-html-tags': string;
'svelte/no-dupe-else-if-blocks': string;
'svelte/no-dupe-style-properties': string;
'svelte/no-dynamic-slot-name': string;
'svelte/no-inner-declarations': string;
'svelte/no-not-function-handler': string;
'svelte/no-object-in-text-mustaches': string;
'svelte/no-shorthand-style-property-overrides': string;
'svelte/no-unknown-style-directive-property': string;
'svelte/no-unused-svelte-ignore': string;
'svelte/system': string;
'svelte/valid-compile': string;
};
};
export = _default;

View File

@ -0,0 +1,26 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const path_1 = __importDefault(require("path"));
const base = require.resolve('./base');
const baseExtend = path_1.default.extname(`${base}`) === '.ts' ? 'plugin:svelte/base' : base;
module.exports = {
extends: [baseExtend],
rules: {
'svelte/comment-directive': 'error',
'svelte/no-at-debug-tags': 'warn',
'svelte/no-at-html-tags': 'error',
'svelte/no-dupe-else-if-blocks': 'error',
'svelte/no-dupe-style-properties': 'error',
'svelte/no-dynamic-slot-name': 'error',
'svelte/no-inner-declarations': 'error',
'svelte/no-not-function-handler': 'error',
'svelte/no-object-in-text-mustaches': 'error',
'svelte/no-shorthand-style-property-overrides': 'error',
'svelte/no-unknown-style-directive-property': 'error',
'svelte/no-unused-svelte-ignore': 'error',
'svelte/system': 'error',
'svelte/valid-compile': 'error'
}
};